X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=themes%2Fdefault%2Frenderer.php;h=ae0cb59e544856495578bc93f9844235975e435a;hb=fbf51ab0febfd0885620abcab8738339d156ff45;hp=03a56f2448ddc4127245b8872201a598d3fee088;hpb=6724489b9b146d2ebd8b89c1f0562954a14619f7;p=fa-stable.git diff --git a/themes/default/renderer.php b/themes/default/renderer.php index 03a56f24..ae0cb59e 100644 --- a/themes/default/renderer.php +++ b/themes/default/renderer.php @@ -9,11 +9,22 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ + 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() { -// add_js_ufile("themes/default/renderer.js"); page(_($help_context = "Main Menu"), false, true); } @@ -34,26 +45,30 @@ echo "\n"; echo "\n"; echo "\n"; - echo "
\n"; + echo "\n"; // tabs if (!$no_menu) { $applications = $_SESSION['App']->applications; $local_path_to_root = $path_to_root; - $img = ""._(  "; - $himg = ""._(  "; $sel_app = $_SESSION['sel_app']; echo "
"; 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 "
"; echo "
"; + // top status bar + $img = ""._(  "; + $himg = ""._(  "; echo ""; echo ""; $indicator = "$path_to_root/themes/".user_theme(). "/images/ajax-loader.gif"; @@ -89,7 +104,8 @@ $power_by, $path_to_root, $Pagehelp, $Ajax; include_once($path_to_root . "/includes/date_functions.inc"); - if ($no_menu == false) + echo "
" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "
\n"; // 'main_page' + if ($no_menu == false) // bottom status line { if ($is_index) echo "\n"; @@ -102,9 +118,9 @@ $Ajax->addUpdate(true, 'hotkeyshelp', $phelp); echo ""; } - echo "
".$phelp."
\n"; + echo "
\n"; } - echo "\n"; + echo " \n"; // 'callout_main' echo "\n"; if ($no_menu == false) { @@ -130,10 +146,20 @@ global $path_to_root; $selected_app = $waapp->get_selected_application(); + if (!$_SESSION["wa_current_user"]->check_application_access($selected_app)) + return; + + if (method_exists($selected_app, 'render_index')) + { + $selected_app->render_index(); + return; + } - $img = "  "; + echo ""; foreach ($selected_app->modules as $module) { + if (!$_SESSION["wa_current_user"]->check_module_access($module)) + continue; // image echo ""; // values @@ -146,13 +172,14 @@ 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)) { 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) @@ -165,13 +192,14 @@ echo "
"; } - echo ""; - } - } - + } +} ?> \ No newline at end of file