summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b4d0bb0)
raw | patch | inline | side by side (parent: b4d0bb0)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 15 Jul 2008 09:22:36 +0000 (09:22 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 15 Jul 2008 09:22:36 +0000 (09:22 +0000) |
Allow image paths relative from the gosa html directory.
plIcon = "plugins/goto/images/plugin.png"
e.g. If we have installed goto, the environment plugin was search in
"plugins/environment/images" instead of "plugins/goto/images".
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11653 594d385d-05f5-0310-b6e9-bd551577e9d8
plIcon = "plugins/goto/images/plugin.png"
e.g. If we have installed goto, the environment plugin was search in
"plugins/environment/images" instead of "plugins/goto/images".
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11653 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_pluglist.inc | patch | blob | history |
index ba3288a63de2bcf49940029154be2c300c95c3b1..714a3afc76a63da0b7d4886586643312e2f6b3eb 100644 (file)
if (isset($info['ICON'])){
$image= get_template_path('images/'.$info['ICON']);
} else {
+ if(!preg_match("/\//",$plIcon)){
$image= get_template_path("plugins/".preg_replace('%^.*/([^/]+)/[^/]+$%', '\1', $class_mapping[$info['CLASS']])."/images/$plIcon");
+ }else{
+ $image = $plIcon;
+ }
}
if ($col > 5){
$entries= $entries."</tr><tr>";