[0005209] Reports: fixed broken reports after session timeout.
[fa-stable.git] / includes / page / header.inc
index 10cc8b103ab31d7297a6408b5b001205118ebc96..8db8fe9ba5ae8f3b42cbea08022b42b6e48bd558 100644 (file)
@@ -15,7 +15,7 @@
 function help_url($context=null)
 {
 
-       global $help_base_url, $help_context, $old_style_help;
+       global $SysPrefs, $help_context;
 
        $country = $_SESSION['language']->code;
        $clean = 0;
@@ -34,27 +34,45 @@ function help_url($context=null)
                $clean = 1;
        }
 
-       if (@$old_style_help)
+       if (@$SysPrefs->old_style_help)
                $help_page_url = _($help_page_url);
 
        if ($clean)
                $help_page_url = access_string($help_page_url, true);
 
-       return $help_base_url
+       return html_specials_encode(
+               $SysPrefs->help_base_url
                .urlencode(strtr(ucwords($help_page_url), array(' '=>'', '/'=>'', '&'=>'And')))
-               .'&ctxhelp=1&lang='.$country;
+               .'&ctxhelp=1&lang='.$country);
+}
+
+function send_css($css = '')
+{
+       global $css_files;
+
+       css_files_ensure_init();
+
+       foreach ($css_files as $css_file)
+       {
+               echo "<link href='$css_file' rel='stylesheet' type='text/css'> \n";
+       }
+       if ($css)
+       {
+               echo "<link href='$css' rel='stylesheet' type='text/css'> \n";
+       }
 }
 
 function send_scripts()
 {
-    global $js_lib, $js_static, $js_path, $js_userlib, $path_to_root, $go_debug;
+    global $SysPrefs, $path_to_root, $js_static, $js_path, $js_userlib;
 
        $js ='';
        foreach($js_static as $jsfile)
        {
-           $fpath = company_path().'/js_cache/'.$jsfile;
+               $cached_name = basename($jsfile);
+               $fpath = user_js_cache().'/'.$cached_name;
            // compress also static files
-               if (!file_exists($fpath) || $go_debug)
+               if (!file_exists($fpath) || $SysPrefs->go_debug)
                        cache_js_file($fpath, file_get_contents($js_path.$jsfile));
 
                $js .= '<script language="javascript" type="text/javascript" src="'.
@@ -69,22 +87,17 @@ function send_scripts()
     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 $path_to_root, $def_app, $use_popup_windows, $help_base_url;
+       global $path_to_root, $SysPrefs, $db_connections;
 
-       if (in_ajax())
+       if (in_ajax() || isset($_POST['REP_ID']))
                return; // just for speed up
 
-//     $jsext = substr_replace($_SERVER['PHP_SELF'], '.js', -4);
-
-//     if (file_exists($_SERVER['DOCUMENT_ROOT'].$jsext))
-//             add_js_ufile($jsext);
-
        $theme = user_theme();
 
-       if ($help_base_url != null && $use_popup_windows && $js == '')
+       if ($SysPrefs->help_base_url != null && $SysPrefs->use_popup_windows && $js == '')
        {
                if (!function_exists('get_js_open_window'))
                {
@@ -93,14 +106,12 @@ function page_header($title, $no_menu=false, $is_index=false, $onload="", $js=""
                add_js_source(get_js_open_window(900, 500));
        }
        if ($js!='')
-         add_js_source($js);
+               add_js_source($js);
 
        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;
@@ -115,18 +126,27 @@ function page_header($title, $no_menu=false, $is_index=false, $onload="", $js=""
        if (isset($_SESSION["App"]) && is_object($_SESSION["App"]))
                $_SESSION["App"]->selected_application = 
                        isset($_SESSION["App"]->applications[$sel_app]) ? $sel_app : 'orders';
-                       
+
+       $page_header_args = func_get_args();
+       if(isset($db_connections))      // skip before installation
+               hook_invoke_all('pre_header', $page_header_args);
+
        $encoding = $_SESSION['language']->encoding;
 
        if (!headers_sent()){
-               header("Content-type: text/html; charset='$encoding'");
+               header("Content-type: text/html; charset=$encoding");
        }
        echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n";
        echo "<html dir='" . $_SESSION['language']->dir . "' >\n";
-       echo "<head><title>$title</title>";
+       echo "<head profile=\"http://www.w3.org/2005/10/profile\"><title>$title</title>";
+       if (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7.0; rv:11.0') != -1) // IE 11 doesn't work with input file type in form.
+               echo "<meta http-equiv='X-UA-Compatible' content='IE=10'>\n";
        echo "<meta http-equiv='Content-type' content='text/html; charset=$encoding'>";
-       echo "<link href='$path_to_root/themes/$theme/default.css' rel='stylesheet' type='text/css'> \n";
-       send_scripts($js);
+       echo "<link href='$path_to_root/themes/default/images/favicon.ico' rel='icon' type='image/x-icon'> \n";
+
+       send_css($css);
+
+       send_scripts();
 
        echo "</head> \n";
        if ($onload == "")
@@ -134,10 +154,9 @@ function page_header($title, $no_menu=false, $is_index=false, $onload="", $js=""
        else
                echo "<body onload=\"$onload\">";
 
-       include_once($path_to_root . "/themes/".user_theme()."/renderer.php");
+       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