X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=themes%2Faqua%2Frenderer.php;h=96eed076e726a15e432c7bdb4ebfc9877bbdcd65;hb=582e4a2443d9ed6ca67f47c05b7d92772b53b805;hp=72e200cb4bf5481da2a68bf8d75adddcbbc97a23;hpb=d5ec96e90a4bdcecc7423ca407724415817cb372;p=fa-stable.git diff --git a/themes/aqua/renderer.php b/themes/aqua/renderer.php index 72e200cb..96eed076 100644 --- a/themes/aqua/renderer.php +++ b/themes/aqua/renderer.php @@ -13,9 +13,9 @@ { function get_icon($category) { - global $path_to_root, $show_menu_category_icons; + global $path_to_root, $SysPrefs; - if ($show_menu_category_icons) + if ($SysPrefs->show_menu_category_icons) $img = $category == '' ? 'right.gif' : $category.'.png'; else $img = 'right.gif'; @@ -34,7 +34,7 @@ function menu_header($title, $no_menu, $is_index) { - global $path_to_root, $help_base_url, $db_connections; + global $path_to_root, $SysPrefs, $db_connections; echo "\n"; echo "\n"; echo "\n"; - echo "
\n"; @@ -44,38 +44,39 @@ echo "\n"; echo "\n"; echo "\n"; - echo "
\n"; + echo "\n"; // tabs + + $indicator = "$path_to_root/themes/".user_theme(). "/images/ajax-loader.gif"; if (!$no_menu) { $applications = $_SESSION['App']->applications; $local_path_to_root = $path_to_root; - $img = ""._(  "; - $himg = ""._(  "; $sel_app = $_SESSION['sel_app']; - echo "
"; - echo "
"; + 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 "" .$acc[0] . ""; - } + $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"; - echo ""; + echo "
" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "
"; + echo ""; + echo ""; echo "
" . $db_connections[user_company()]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "" . _("Preferences") . "   \n"; echo " " . _("Change password") . "   \n"; - if ($help_base_url != null) + if ($SysPrefs->help_base_url != null) { echo "$himg" . _("Help") . "   "; } @@ -84,55 +85,58 @@ } echo "
"; if ($no_menu) - echo "
"; - elseif ($title && !$is_index) { - echo "
" + echo "
$title
" + ."" + ."
"; + } elseif ($title && !$is_index) + { + echo "
" ."" ."
$title" .(user_hints() ? "" : '') ."
"; } - - } function menu_footer($no_menu, $is_index) { - global $version, $allow_demo_mode, $app_title, $power_url, - $power_by, $path_to_root, $Pagehelp, $Ajax; + global $version, $path_to_root, $Pagehelp, $Ajax, $SysPrefs; + include_once($path_to_root . "/includes/date_functions.inc"); - if ($no_menu == false) + echo "
\n"; // 'main_page' + if ($no_menu == false) // bottom status line { if ($is_index) - echo "\n"; + echo "
\n"; else - echo "
\n"; + echo "
\n"; echo ""; if (isset($_SESSION['wa_current_user'])) { $phelp = implode('; ', $Pagehelp); - echo "\n"; + echo "\n"; $Ajax->addUpdate(true, 'hotkeyshelp', $phelp); echo ""; } echo "
" . Today() . " | " . Now() . "" . Today() . " | " . Now() . "".$phelp."
\n"; } - echo "
\n"; + echo " \n"; // 'callout_main' if ($no_menu == false) { echo "\n"; echo "\n"; - echo "\n"; + echo "\n"; echo "\n"; echo "\n"; - echo "\n"; + echo "\n"; echo "\n"; - if ($allow_demo_mode==true) + if ($SysPrefs->allow_demo_mode) { echo "\n"; - //echo "\n"; + //echo "\n"; echo "\n"; } echo "

\n"; @@ -142,14 +146,21 @@ function display_applications(&$waapp) { 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 ""; @@ -170,7 +181,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) @@ -190,7 +201,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) @@ -202,77 +213,6 @@ 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