Code

Updated pluglist image handling:
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 15 Jul 2008 09:22:36 +0000 (09:22 +0000)
committerhickert <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

gosa-core/include/class_pluglist.inc

index ba3288a63de2bcf49940029154be2c300c95c3b1..714a3afc76a63da0b7d4886586643312e2f6b3eb 100644 (file)
@@ -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."</tr><tr>";