X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Fheader.inc;h=880c03f449489eb4ac4729bfbb63327ce3741dd2;hb=5e63c6ace55729bbb5ee3b060035a25a4426eb0a;hp=d71f39fe29e55a12fa5d56e0c5c91264f2e6e5ea;hpb=d415c4b31baaa6379a0c360a93a1f78f983df4e7;p=fa-stable.git diff --git a/includes/page/header.inc b/includes/page/header.inc index d71f39fe..880c03f4 100644 --- a/includes/page/header.inc +++ b/includes/page/header.inc @@ -1,139 +1,149 @@ . +***********************************************************************/ +/* + If no context is set current page/menu screen is selected. +*/ +function help_url($context=null) { - global $help_page_url, $help_base_url, $applications, $help_page_title; + global $SysPrefs, $help_context; - if (isset($help_page_url)) + $country = $_SESSION['language']->code; + $clean = 0; + + if ($context!=null) { - return $help_base_url.$help_page_url; + $help_page_url = $context; } - - $help_page_url = ''; - if (isset($help_page_title)) + elseif (isset($help_context)) + { + $help_page_url = $help_context; + } else // main menu { - $help_page_url = $help_page_title; + $app = $_SESSION['sel_app']; + $help_page_url = $_SESSION['App']->applications[$app]->help_context; + $clean = 1; } - elseif ($title==_("Main Menu")) + + if (@$SysPrefs->old_style_help) + $help_page_url = _($help_page_url); + + if ($clean) + $help_page_url = access_string($help_page_url, true); + + return $SysPrefs->help_base_url + .urlencode(strtr(ucwords($help_page_url), array(' '=>'', '/'=>'', '&'=>'And'))) + .'&ctxhelp=1&lang='.$country; +} + +function send_scripts() +{ + global $SysPrefs, $path_to_root, $js_static, $js_path, $js_userlib; + + $js =''; + foreach($js_static as $jsfile) { - $help_page_url = $applications[$app]; + $cached_name = basename($jsfile); + $fpath = user_js_cache().'/'.$cached_name; + // compress also static files + if (!file_exists($fpath) || $SysPrefs->go_debug) + cache_js_file($fpath, file_get_contents($js_path.$jsfile)); + + $js .= ''; } - else + foreach($js_userlib as $jsfile) { - $help_page_url = $title; + $js .= ''; } - return $help_base_url.urlencode(str_replace(' ', '', ucwords($help_page_url))); + echo $js; } -function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="") +function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="", $css='') { // titles and screen header - global $db_connections, $path_to_root, $def_app, $applications, - $help_base_url, $help_page_url, $use_popup_windows, - $js_lib, $js_static, $js_path; + global $path_to_root, $SysPrefs, $db_connections; + + if (in_ajax()) + return; // just for speed up + +// $jsext = substr_replace($_SERVER['PHP_SELF'], '.js', -4); - if (isset($_GET['ajax'])) return; +// if (file_exists($_SERVER['DOCUMENT_ROOT'].$jsext)) +// add_js_ufile($jsext); $theme = user_theme(); - $local_path_to_root = $path_to_root; - if ($help_base_url != null && $use_popup_windows && $js == '') + if ($SysPrefs->help_base_url != null && $SysPrefs->SysPrefs->use_popup_windows && $js == '') { if (!function_exists('get_js_open_window')) { include_once($path_to_root.'/includes/ui/ui_view.inc'); } - $js = get_js_open_window(900, 500); + add_js_source(get_js_open_window(900, 500)); } + if ($js!='') + add_js_source($js); - // javascript includes collect - add_js_source($js); - $js =''; - foreach($js_static as $jsfile) { - $js .= ''; - } - foreach($js_lib as $text) { - $js .= $text; - } if (!isset($no_menu)) { $no_menu = false; } - if (!isset($_SESSION["sel_app"])) - session_register("sel_app"); if (isset($_SESSION["App"]) && is_object($_SESSION["App"]) && isset($_SESSION["App"]->selected_application) && $_SESSION["App"]->selected_application != "") $sel_app = $_SESSION["App"]->selected_application; elseif (isset($_SESSION["sel_app"]) && $_SESSION["sel_app"] != "") $sel_app = $_SESSION["sel_app"]; else - $sel_app = $def_app; + $sel_app = user_startup_tab(); $_SESSION["sel_app"] = $sel_app; - echo "dir . "' >"; - echo "$title"; - $encoding = $_SESSION['language']->encoding; - $local_stylesheet = $_SESSION['language']->get_stylesheet(); - echo ""; - echo " \n"; - if (file_exists($local_path_to_root. "/".$local_stylesheet)) - echo " \n"; - if ($js != "") - echo $js; - echo " \n"; - if ($onload == "") - echo ""; - else - echo ""; - echo "\n"; - echo "\n"; - echo "\n"; - echo "
\n"; - - echo "\n"; - echo "\n"; - echo "
\n"; - echo "\n"; - echo "\n"; - echo "
\n"; - if (!$no_menu) - { - echo "
"; - echo "
"; - foreach($applications as $app => $name) - { - echo "" .$name . ""; - } - echo "
"; + // When startup tab for current user was set to already + // removed/inactivated extension module select Sales tab as default. + if (isset($_SESSION["App"]) && is_object($_SESSION["App"])) + $_SESSION["App"]->selected_application = + isset($_SESSION["App"]->applications[$sel_app]) ? $sel_app : 'orders'; - echo "
"; + $page_header_args = func_get_args(); + if(isset($db_connections)) // skip before installation + hook_invoke_all('pre_header', $page_header_args); - echo ""; - echo ""; - if ($help_base_url != null) - { + $encoding = $_SESSION['language']->encoding; - echo ""; - } - echo "
" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "" . _("Help") . "" . _("Logout") . ""; - echo "
"; + if (!headers_sent()){ + header("Content-type: text/html; charset='$encoding'"); } + echo "\n"; + echo "dir . "' >\n"; + echo "$title"; + echo ""; + echo " \n"; + echo " \n"; + if ($css) + echo ''; - echo "
"; + send_scripts(); - if ($title && !$no_menu && !$is_index) - { - echo "
$title
"; - } + echo " \n"; + if ($onload == "") + echo ""; + else + echo ""; - if (!$is_index) - echo "
"; + include_once($path_to_root . "/themes/$theme/renderer.php"); + $rend = new renderer(); + $rend->menu_header($title, $no_menu, $is_index); + error_box(); } -?> \ No newline at end of file