X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=themes%2Faqua%2Frenderer.php;h=2734ad08f644bbb5efa908346c47f95f91648042;hb=4e4ce8577f8582967995919860c66aa94d633afd;hp=924c82e2208aeeb154ab9b5a58455adf9e8b6b3f;hpb=0d469b61b73c9fff2c428eb042d346587f62aac9;p=fa-stable.git diff --git a/themes/aqua/renderer.php b/themes/aqua/renderer.php index 924c82e2..2734ad08 100644 --- a/themes/aqua/renderer.php +++ b/themes/aqua/renderer.php @@ -1,10 +1,30 @@ . +***********************************************************************/ 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(_("Main Menu"), false, true); + page(_($help_context = "Main Menu"), false, true); } function wa_footer() @@ -14,11 +34,7 @@ function menu_header($title, $no_menu, $is_index) { - global $path_to_root, $applications, $help_base_url, $db_connections; - // you can owerride the table styles from config.php here, if you want. - //global $table_style, $table_style2; - //$table_style = "cellpadding=3 border=1 bordercolor='#8cacbb' style='border-collapse: collapse'"; - //$table_style2 = "cellpadding=3 border=1 bordercolor='#cccccc' style='border-collapse: collapse'"; + global $path_to_root, $help_base_url, $db_connections; echo "\n"; echo "\n"; echo "
\n"; @@ -31,15 +47,19 @@ echo "\n"; 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 => $name) + foreach($applications as $app) { - echo "" .$name . ""; + $acc = access_string($app->name); + echo "" .$acc[0] . ""; } echo "
"; @@ -47,28 +67,37 @@ echo ""; echo ""; + $indicator = "$path_to_root/themes/".user_theme(). "/images/ajax-loader.gif"; + echo ""; + echo " "; + echo "$himg" . _("Help") . "   "; } - echo "
" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "" . _("Preferences") . "   \n"; + echo " " . _("Change password") . "   \n"; + if ($help_base_url != null) { - echo "" . _("Help") . "" . _("Logout") . ""; + echo "$img" . _("Logout") . "   "; echo "
"; } echo "
"; - - if ($title && !$no_menu && !$is_index) + if ($no_menu) + echo "
"; + elseif ($title && !$is_index) { - echo "
$title
"; + echo "
" + ."" + ."
$title" + .(user_hints() ? "" : '') + ."
"; } - if (!$is_index) - echo "
"; } function menu_footer($no_menu, $is_index) { - global $version, $allow_demo_mode, $app_title, $power_url, $power_by, $path_to_root; + global $version, $allow_demo_mode, $app_title, $power_url, + $power_by, $path_to_root, $Pagehelp, $Ajax; include_once($path_to_root . "/includes/date_functions.inc"); if ($no_menu == false) @@ -78,8 +107,12 @@ else echo "\n"; echo ""; - if (isset($_SESSION['wa_current_user'])) + if (isset($_SESSION['wa_current_user'])) { + $phelp = implode('; ', $Pagehelp); echo "\n"; + $Ajax->addUpdate(true, 'hotkeyshelp', $phelp); + echo ""; + } echo "
" . Today() . " | " . Now() . "".$phelp."
\n"; } echo "
\n"; @@ -88,7 +121,7 @@ { echo "\n"; echo "\n"; - echo "\n"; + echo "\n"; echo "\n"; echo "\n"; echo "\n"; @@ -105,7 +138,8 @@ function display_applications(&$waapp) { - + global $path_to_root; + $selected_app = $waapp->get_selected_application(); foreach ($selected_app->modules as $module) @@ -122,8 +156,19 @@ foreach ($module->lappfunctions as $appfunction) { - if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) - echo " " . $appfunction->label . "
"; + $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 + { + echo $img.'' + .access_string($appfunction->label, true) + ."
\n"; + } } echo ""; if (sizeof($module->rappfunctions) > 0) @@ -131,8 +176,19 @@ echo ""; }