Fixed many issues in output HTML code according to HTML 4.01 Transitional format.
[fa-stable.git] / includes / page / header.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 /*
13         If no context is set current page/menu screen is selected.
14 */
15 function help_url($context=null)
16 {
17
18         global $help_base_url, $help_context, $old_style_help;
19
20         $country = $_SESSION['language']->code;
21         $clean = 0;
22         
23         if ($context!=null)
24         {
25                 $help_page_url = $context;
26         }
27         elseif (isset($help_context))
28         {
29                 $help_page_url = $help_context;
30         } else // main menu
31         {
32                 $app = $_SESSION['sel_app'];
33                 $help_page_url = $_SESSION['App']->applications[$app]->help_context;
34                 $clean = 1;
35         }
36
37         if (@$old_style_help)
38                 $help_page_url = _($help_page_url);
39
40         if ($clean)
41                 $help_page_url = access_string($help_page_url, true);
42
43         return htmlspecialchars($help_base_url
44                 .urlencode(strtr(ucwords($help_page_url), array(' '=>'', '/'=>'', '&'=>'And')))
45                 .'&ctxhelp=1&lang='.$country);
46 }
47
48 function send_scripts()
49 {
50     global $js_static, $js_path, $js_userlib, $path_to_root, $go_debug;
51
52         $js ='';
53         foreach($js_static as $jsfile)
54         {
55             $fpath = company_path().'/js_cache/'.$jsfile;
56             // compress also static files
57                 if (!file_exists($fpath) || $go_debug)
58                         cache_js_file($fpath, file_get_contents($js_path.$jsfile));
59
60                 $js .= '<script language="javascript" type="text/javascript" src="'.
61                         $fpath . '"></script>';
62         }
63         foreach($js_userlib as $jsfile)
64         {
65                 $js .= '<script language="javascript" type="text/javascript" src="'.
66                 $jsfile . '"></script>';
67         }
68
69     echo $js;
70 }
71
72 function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="", $css='')
73 {
74         // titles and screen header
75         global $path_to_root, $def_app, $use_popup_windows, $help_base_url, $db_connections;
76
77         if (in_ajax())
78                 return; // just for speed up
79
80 //      $jsext = substr_replace($_SERVER['PHP_SELF'], '.js', -4);
81
82 //      if (file_exists($_SERVER['DOCUMENT_ROOT'].$jsext))
83 //              add_js_ufile($jsext);
84
85         $theme = user_theme();
86
87         if ($help_base_url != null && $use_popup_windows && $js == '')
88         {
89                 if (!function_exists('get_js_open_window'))
90                 {
91                         include_once($path_to_root.'/includes/ui/ui_view.inc');
92                 }
93                 add_js_source(get_js_open_window(900, 500));
94         }
95         if ($js!='')
96           add_js_source($js);
97
98         if (!isset($no_menu))
99         {
100                 $no_menu = false;
101         }
102         if (isset($_SESSION["App"]) && is_object($_SESSION["App"]) && isset($_SESSION["App"]->selected_application) &&
103                 $_SESSION["App"]->selected_application != "")
104                 $sel_app = $_SESSION["App"]->selected_application;
105         elseif (isset($_SESSION["sel_app"]) && $_SESSION["sel_app"] != "")
106                 $sel_app = $_SESSION["sel_app"];
107         else
108                 $sel_app = user_startup_tab();
109         $_SESSION["sel_app"] = $sel_app;
110
111         // When startup tab for current user was set to already 
112         // removed/inactivated extension module select Sales tab as default.
113         if (isset($_SESSION["App"]) && is_object($_SESSION["App"]))
114                 $_SESSION["App"]->selected_application = 
115                         isset($_SESSION["App"]->applications[$sel_app]) ? $sel_app : 'orders';
116
117         $page_header_args = func_get_args();
118         if(isset($db_connections))      // skip before installation
119                 hook_invoke_all('pre_header', $page_header_args);
120
121         $encoding = $_SESSION['language']->encoding;
122
123         if (!headers_sent()){
124                 header("Content-type: text/html; charset=$encoding");
125         }
126         echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n";
127         echo "<html dir='" . $_SESSION['language']->dir . "' >\n";
128         echo "<head profile=\"http://www.w3.org/2005/10/profile\"><title>$title</title>";
129         echo "<meta http-equiv='Content-type' content='text/html; charset=$encoding'>";
130         echo "<link href='$path_to_root/themes/$theme/default.css' rel='stylesheet' type='text/css'> \n";
131         echo "<link href='$path_to_root/themes/default/images/favicon.ico' rel='icon' type='image/x-icon'> \n";
132         if ($css)
133                 echo '<link href="'.$css.'" rel="stylesheet" type="text/css">';
134
135         send_scripts();
136
137         echo "</head> \n";
138         if ($onload == "")
139                 echo "<body>";
140         else
141                 echo "<body onload=\"$onload\">";
142
143         include_once($path_to_root . "/themes/$theme/renderer.php");
144         $rend = new renderer();
145         $rend->menu_header($title, $no_menu, $is_index);
146         error_box();
147 }
148
149 ?>