summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9ce09c4)
raw | patch | inline | side by side (parent: 9ce09c4)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 8 Jul 2008 11:56:58 +0000 (11:56 +0000) | ||
committer | hickert <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
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11557 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_pluglist.inc | patch | blob | history |
index 3d892c8e355d816a37106be2ed143e6c4f815fee..114ab5ddd21fe3cbf8b58558f1fcbee4e1c429ee 100644 (file)
{
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'];