From b4f729a65bd9c3012fbd36e1ee6159029ed53171 Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 15 Jul 2008 09:22:36 +0000 Subject: [PATCH] Updated pluglist image handling: 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 --- gosa-core/include/class_pluglist.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gosa-core/include/class_pluglist.inc b/gosa-core/include/class_pluglist.inc index ba3288a63..714a3afc7 100644 --- a/gosa-core/include/class_pluglist.inc +++ b/gosa-core/include/class_pluglist.inc @@ -306,7 +306,11 @@ class pluglist { 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.""; -- 2.30.2