mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
allow to specify the app of an image by giving <app>/<name> instead just a <name>
This commit is contained in:
parent
20cacc2f1d
commit
da8ccaa6bb
@ -1050,9 +1050,13 @@
|
||||
break;
|
||||
case 'image':
|
||||
$image = $value != '' ? $value : $name;
|
||||
$image = $this->html->image(substr($this->name,0,strpos($this->name,'.')),
|
||||
$image,strlen($label) > 1 && !$cell['no_lang'] ? lang($label) : $label,'border="0"');
|
||||
$html .= $image;
|
||||
list($app,$img) = explode('/',$image,2);
|
||||
if (!$app || !$img || !is_dir(PHPGW_SERVER_ROOT.'/'.$app) || strstr($img,'/'))
|
||||
{
|
||||
$img = $image;
|
||||
list($app) = explode('.',$this->name);
|
||||
}
|
||||
$html .= $this->html->image($app,$img,strlen($label) > 1 && !$cell['no_lang'] ? lang($label) : $label,'border="0"');
|
||||
list($extra_link,$extra_link_target) = explode(',',$cell['size']);
|
||||
$extra_label = False;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user