X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=themes%2Faqua%2Frenderer.php;h=10c3c95641d9e7e09f7aad57d26b94b2d753d01a;hb=a01cbf378c448da44758b9b9898eb1acc970e84a;hp=8ee81f2dfa25cef7657b4f096d9bd981c0870976;hpb=46c5f7a65a7659a44ae8254c63152074363d3987;p=fa-stable.git diff --git a/themes/aqua/renderer.php b/themes/aqua/renderer.php index 8ee81f2d..10c3c956 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))