X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=themes%2Fdefault%2Frenderer.php;h=ae0cb59e544856495578bc93f9844235975e435a;hb=fbf51ab0febfd0885620abcab8738339d156ff45;hp=08d015abf77720543ab536995768f780b45cff2f;hpb=3f3cfa578adbc2b71f4fd9c8d0f5536d26af43d8;p=fa-stable.git diff --git a/themes/default/renderer.php b/themes/default/renderer.php index 08d015ab..ae0cb59e 100644 --- a/themes/default/renderer.php +++ b/themes/default/renderer.php @@ -35,7 +35,7 @@ function menu_header($title, $no_menu, $is_index) { - global $path_to_root, $help_base_url, $db_connections, $show_inaccessible_menu_items; + global $path_to_root, $help_base_url, $db_connections; echo "\n"; echo "\n"; echo "
\n"; @@ -45,19 +45,17 @@ 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) { - if ($this->check_application_access($app)) + if ($_SESSION["wa_current_user"]->check_application_access($app)) { $acc = access_string($app->name); echo ""; echo "
"; + // top status bar + $img = ""._(  "; + $himg = ""._(  "; echo ""; echo ""; $indicator = "$path_to_root/themes/".user_theme(). "/images/ajax-loader.gif"; @@ -103,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"; @@ -116,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) { @@ -144,11 +146,19 @@ global $path_to_root; $selected_app = $waapp->get_selected_application(); - if (!$this->check_application_access($selected_app)) + if (!$_SESSION["wa_current_user"]->check_application_access($selected_app)) return; + + if (method_exists($selected_app, 'render_index')) + { + $selected_app->render_index(); + return; + } + + echo ""; foreach ($selected_app->modules as $module) { - if (!$this->check_module_access($module)) + if (!$_SESSION["wa_current_user"]->check_module_access($module)) continue; // image echo ""; @@ -169,7 +179,7 @@ { echo $img.menu_link($appfunction->link, $appfunction->label)."
\n"; } - elseif (!$this->hide_inaccessible_menu_items()) + elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items()) { echo $img.'' .access_string($appfunction->label, true) @@ -189,7 +199,7 @@ { echo $img.menu_link($appfunction->link, $appfunction->label)."
\n"; } - elseif (!$this->hide_inaccessible_menu_items()) + elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items()) { echo $img.'' .access_string($appfunction->label, true) @@ -200,79 +210,8 @@ } echo "
"; - } + } echo ""; - } - - function check_application_access($waapp) - { - if (!$this->hide_inaccessible_menu_items()) - { - return true; - } - - foreach ($waapp->modules as $module) - { - if ($this->check_module_access($module)) - { - return true; - } - } - - return false; - - } - - function check_module_access($module) - { - - if (!$this->hide_inaccessible_menu_items()) - { - return true; - } - - if (sizeof($module->lappfunctions) > 0) - { - foreach ($module->lappfunctions as $appfunction) - { - if ($appfunction->label != "" && $_SESSION["wa_current_user"]->can_access_page($appfunction->access)) - { - return true; - } - } - } - - if (sizeof($module->rappfunctions) > 0) - { - foreach ($module->rappfunctions as $appfunction) - { - if ($appfunction->label != "" && $_SESSION["wa_current_user"]->can_access_page($appfunction->access)) - { - return true; - } - } - } - - return false; - - } - - function hide_inaccessible_menu_items() - { - global $hide_inaccessible_menu_items; - - if (!isset($hide_inaccessible_menu_items) || $hide_inaccessible_menu_items == 0) - { - return false; - } - - else - { - return true; - } - } - } - - - + } +} ?> \ No newline at end of file