Code

Updated pluglist
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 8 Jul 2008 11:56:58 +0000 (11:56 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 8 Jul 2008 11:56:58 +0000 (11:56 +0000)
-Recreate Icon menu if class_lcoation has changed.

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11557 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/class_pluglist.inc

index 3d892c8e355d816a37106be2ed143e6c4f815fee..114ab5ddd21fe3cbf8b58558f1fcbee4e1c429ee 100644 (file)
@@ -267,6 +267,19 @@ class pluglist {
        {
                global $class_mapping;
 
+    /* Check if class_location.inc has changed, this is the case 
+        if we have installed or removed plugins. 
+     */
+    if(!session::is_set("class_location.inc:timestamp")){
+      $tmp = stat("../include/class_location.inc");
+      session::set("class_location.inc:timestamp",$tmp['mtime']);
+    }else{
+      $tmp = stat("../include/class_location.inc");
+      if($tmp['mtime'] != session::get("class_location.inc:timestamp")){
+        $this->iconmenu = "";
+      }
+    }
+
                if ($this->iconmenu == ""){
                        $cfg= $this->config->data['MENU'];