X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=themes%2Faqua%2Frenderer.php;h=2734ad08f644bbb5efa908346c47f95f91648042;hb=4e4ce8577f8582967995919860c66aa94d633afd;hp=8ee81f2dfa25cef7657b4f096d9bd981c0870976;hpb=6724489b9b146d2ebd8b89c1f0562954a14619f7;p=fa-stable.git diff --git a/themes/aqua/renderer.php b/themes/aqua/renderer.php index 8ee81f2d..2734ad08 100644 --- a/themes/aqua/renderer.php +++ b/themes/aqua/renderer.php @@ -11,6 +11,17 @@ ***********************************************************************/ class renderer { + function get_icon($category) + { + global $path_to_root, $show_menu_category_icons; +; + if ($show_menu_category_icons) + $img = $category == '' ? 'right.gif' : $category.'.png'; + else + $img = 'right.gif'; + return "  "; + } + function wa_header() { page(_($help_context = "Main Menu"), false, true); @@ -131,7 +142,6 @@ $selected_app = $waapp->get_selected_application(); - $img = "  "; foreach ($selected_app->modules as $module) { // image @@ -146,6 +156,7 @@ foreach ($module->lappfunctions as $appfunction) { + $img = $this->get_icon($appfunction->category); if ($appfunction->label == "") echo " 
"; elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) @@ -165,6 +176,7 @@ echo ""; foreach ($module->rappfunctions as $appfunction) { + $img = $this->get_icon($appfunction->category); if ($appfunction->label == "") echo " 
"; elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access))