X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=themes%2Fcool%2Frenderer.php;h=bb5621356f31fe1f3b428d200fb267ae682ec22b;hb=0d2cbe658742c6d7ed2eb09dab0abc6ee4dd1f74;hp=b560ac91ceb89747a154747ead65561e24d84a4e;hpb=95375dcd6bc3dae571d94b23e85889369d0be4a7;p=fa-stable.git diff --git a/themes/cool/renderer.php b/themes/cool/renderer.php index b560ac91..bb562135 100644 --- a/themes/cool/renderer.php +++ b/themes/cool/renderer.php @@ -13,11 +13,12 @@ { function get_icon($category) { - global $path_to_root; - - // uncomment this line if you want to use the pre-defined categories. - //$img = $category == '' ? 'right.gif' : $category.'.png'; - $img = 'right.gif'; + global $path_to_root, $show_menu_category_icons; + + if ($show_menu_category_icons) + $img = $category == '' ? 'right.gif' : $category.'.png'; + else + $img = 'right.gif'; return "  "; } @@ -55,10 +56,13 @@ echo "
"; foreach($applications as $app) { - $acc = access_string($app->name); - echo "" .$acc[0] . ""; + if ($_SESSION["wa_current_user"]->check_application_access($app)) + { + $acc = access_string($app->name); + echo "" .$acc[0] . ""; + } } echo "
"; @@ -139,9 +143,13 @@ { global $path_to_root; $selected_app = $waapp->get_selected_application(); + if (!$_SESSION["wa_current_user"]->check_application_access($selected_app)) + return; foreach ($selected_app->modules as $module) { + if (!$_SESSION["wa_current_user"]->check_module_access($module)) + continue; // image echo ""; // values @@ -161,7 +169,7 @@ { echo $img.menu_link($appfunction->link, $appfunction->label)."
\n"; } - else + elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items()) { echo $img.'' .access_string($appfunction->label, true) @@ -181,7 +189,7 @@ { echo $img.menu_link($appfunction->link, $appfunction->label)."
\n"; } - else + elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items()) { echo $img.'' .access_string($appfunction->label, true)