summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0cdef3f)
raw | patch | inline | side by side (parent: 0cdef3f)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 25 Sep 2006 08:12:33 +0000 (08:12 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 25 Sep 2006 08:12:33 +0000 (08:12 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4766 594d385d-05f5-0310-b6e9-bd551577e9d8
include/class_pluglist.inc | patch | blob | history |
index c29dfde116dffe04c1fbd6f56ce917609ff0a3ea..f6267beb2fdf5cce01e29f6cb9de856a5a4b4343 100644 (file)
$plDescription= $vars['plDescription'];
- $index= $this->get_index($info['PATH']);
+ $index= $this->get_index($info['PATH'],$info['CLASS']);
$image= get_template_path('images/'.$info['ICON']);
$href= "main.php?plug=$index&reset=1";
$plHeadline= $vars['plHeadline'];
$plDescription= $vars['plDescription'];
- $index= $this->get_index($info['PATH']);
+ $index= $this->get_index($info['PATH'],$info['CLASS']);
$href = "main.php?plug=".$index."&reset=1";
return ("../".$this->dirlist[$index]);
}
- function get_index($path)
+ function get_index($path,$class)
{
- return (array_search($path, $this->dirlist));
+ /* Search for plugin index (id), identify entry by path && class */
+ $data = $this->config->data['MENU'];
+ foreach($data as $section => $plugins){
+ foreach($plugins as $key => $plugin) {
+ if($plugin['CLASS'] == $class && $plugin['PATH'] == $path){
+ return($key);
+ }
+ }
+ }
+
+ /* Indentify by path*/
+ return (array_search($path, $this->dirlist));
+
}
}
?>