summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e215c77)
raw | patch | inline | side by side (parent: e215c77)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 26 Feb 2010 12:23:17 +0000 (12:23 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 26 Feb 2010 12:23:17 +0000 (12:23 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15744 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_pluglist.inc | patch | blob | history |
index 4e5e5dd0d15b5d55e1de8d53c42e067c7384ffa3..b246cb322aed1dc404afe636e23ee9ef448dc62e 100644 (file)
{
global $class_mapping;
+ $add_hr =FALSE;
if ($this->iconmenu == ""){
$cfg= $this->config->data['MENU'];
foreach ($cfg as $headline => $plug){
$col= 0;
+ if($add_hr){
+ $add_hr = FALSE;
+ $this->iconmenu .= "\n <hr>\n";
+ }
$this->iconmenu .= "\n <div class='clear'></div>\n";
- $this->iconmenu .= "\n <h3>". _($headline)."</h3>\n";
+ $this->iconmenu .= "\n <h3 class='icon-menu-title'>". _($headline)."</h3>\n";
foreach ($plug as $info){
$this->iconmenu.= "\n </div>\n";
$col++ ;
}
+ $add_hr = TRUE;
}
}
return ($this->iconmenu);