X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_pluglist.inc;h=0bed2a8a7ae3f57587e54cb9a422fa5cd9a15cfc;hb=f26f21eeaa557b93458cb63c77bf61d3837b8ac9;hp=bce2ec2055fcae954067b68916b7c7c64ca015f3;hpb=e0375bee84fcf679e71f218b14799d7344b37f63;p=gosa.git diff --git a/gosa-core/include/class_pluglist.inc b/gosa-core/include/class_pluglist.inc index bce2ec205..0bed2a8a7 100644 --- a/gosa-core/include/class_pluglist.inc +++ b/gosa-core/include/class_pluglist.inc @@ -32,6 +32,7 @@ class pluglist { var $info= array(); var $headlines = array(); var $allowed_plugins = array(); + var $silly_cache= array(); function pluglist(&$config, &$ui) { @@ -41,15 +42,15 @@ class pluglist { /* Create dirlist for all plugins */ $this->dirlist= $this->get_plugins ($this->dirlist, $this->config->data['MENU']); - /* Fill info part of pluglist */ - $classes= get_declared_classes(); + /* Fill info part of pluglist */ + $classes= get_declared_classes(); - foreach ($classes as $cname){ - $cmethods = get_class_methods($cname); - if (in_array_ics('plInfo',$cmethods)){ - $this->info[$cname]= @call_user_func(array($cname, 'plInfo')); - } - } + foreach ($classes as $cname){ + $cmethods = get_class_methods($cname); + if (in_array_ics('plInfo',$cmethods)){ + $this->info[$cname]= call_user_func(array($cname, 'plInfo')); + } + } /* Provide field for 'all' */ $this->info['all']= array(); @@ -60,9 +61,8 @@ class pluglist { function get_plugins($list, &$config) { - global $class_mapping; + global $class_mapping; - /* Error reporting, because I'm getting strange messages in PHP 4.2.x */ if (!isset($config['CLASS'])){ if (is_array($config)){ foreach ($config as $val){ @@ -70,7 +70,7 @@ class pluglist { } } } else { - if (is_array($config) && isset($class_mapping[$config['CLASS']])){ + if (is_array($config) && isset($class_mapping[$config['CLASS']])){ $list[$this->index++]= dirname($class_mapping[$config['CLASS']]); } else { $list[$this->index++]= ""; @@ -81,7 +81,7 @@ class pluglist { } - /*! \brief Check whether we are allowed to modify the given acl or nit.. + /*! \brief Check whether we are allowed to modify the given acl or not.. This function is used to check which plugins are visible. @param The acl tag to test, eg. "users/user:self", "systems", ... @@ -89,6 +89,10 @@ class pluglist { */ function check_access($aclname) { + if (isset($this->silly_cache[$aclname])) { + return $this->silly_cache[$aclname]; + } + /* Split given acl string into an array. e.g. "user,systems" => array("users","systems"); */ @@ -100,24 +104,30 @@ class pluglist { } foreach($acls_to_check as $acl_to_check){ + $acl_to_check = trim($acl_to_check); /* Check if the given acl tag is only valid for self acl entries - ui->get_permissions($this->ui->dn,$acl_to_check,"") != ""){ + $this->silly_cache[$aclname]= TRUE; return(TRUE); } + $this->silly_cache[$aclname]= FALSE; return(FALSE); }else{ - /* No self acls. Check if we have any acls for the given ACL type - */ + /* No self acls. Check if we have any acls for the given ACL type */ $deps = $this->ui->get_module_departments($acl_to_check,TRUE); - if(count($deps)) return TRUE; + if(count($deps)){ + $this->silly_cache[$aclname]= TRUE; + return TRUE; + } } } + + $this->silly_cache[$aclname]= FALSE; return (FALSE); } @@ -191,7 +201,7 @@ class pluglist { $entries= $entries."

"; - if(session::get('js')){ + if(session::global_get('js')){ $entries.= _($plHeadline)."

\n"; } else { $entries.= ""; - if(session::get('js')){ + if(session::global_get('js')){ $entries.= "\"*\" ". _($plHeadline);