Copyright notes at top op every source file
[fa-stable.git] / includes / page / header.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU Affero General Public License,
5         AGPL, as published by the Free Software Foundation, either version 
6         3 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/agpl-3.0.html>.
11 ***********************************************************************/
12 function help_url($title, $app)
13 {
14
15         global $help_page_url, $help_base_url, $applications, $help_page_title;
16
17         if (isset($help_page_url))
18         {
19                 return $help_base_url.$help_page_url;
20         }
21
22         $help_page_url = '';
23         if (isset($help_page_title))
24         {
25                 $help_page_url = $help_page_title;
26         }
27         elseif ($title==_("Main Menu"))
28         {
29                 $help_page_url = access_string($applications[$app], true);
30         }
31         else
32         {
33                 $help_page_url = $title;
34         }
35
36         return $help_base_url.urlencode(str_replace(' ', '', ucwords($help_page_url)));
37 }
38
39 function send_scripts()
40 {
41     global $js_lib, $js_static, $js_path, $js_userlib, $comp_path,
42         $path_to_root, $go_debug;
43
44         add_user_js_data();
45
46         $js ='';
47         foreach($js_static as $jsfile)
48         {
49             $fpath = $comp_path.'/'.user_company().'/js_cache/'.$jsfile;
50             // compress also static files
51                 if (!file_exists($fpath) || $go_debug)
52                         cache_js_file($fpath, file_get_contents($js_path.$jsfile));
53
54                 $js .= '<script language="javascript" type="text/javascript" src="'.
55                         $fpath . '"></script>';
56         }
57         foreach($js_userlib as $jsfile)
58         {
59                 $js .= '<script language="javascript" type="text/javascript" src="'.
60                 $jsfile . '"></script>';
61         }
62
63         foreach($js_lib as $text)
64         {
65                 $js .= $text;
66         }
67     echo $js;
68 }
69
70 function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="")
71 {
72         // titles and screen header
73         global $path_to_root, $def_app, $use_popup_windows, $help_base_url;
74
75         if (in_ajax())
76                 return; // just for speed up
77
78         $theme = user_theme();
79         $local_path_to_root = $path_to_root;
80
81         if ($help_base_url != null && $use_popup_windows && $js == '')
82         {
83                 if (!function_exists('get_js_open_window'))
84                 {
85                         include_once($path_to_root.'/includes/ui/ui_view.inc');
86                 }
87                 add_js_source(get_js_open_window(900, 500));
88         }
89         if ($js!='')
90           add_js_source($js);
91
92         if (!isset($no_menu))
93         {
94                 $no_menu = false;
95         }
96         if (!isset($_SESSION["sel_app"]))
97                 session_register("sel_app");
98         if (isset($_SESSION["App"]) && is_object($_SESSION["App"]) && isset($_SESSION["App"]->selected_application) &&
99                 $_SESSION["App"]->selected_application != "")
100                 $sel_app = $_SESSION["App"]->selected_application;
101         elseif (isset($_SESSION["sel_app"]) && $_SESSION["sel_app"] != "")
102                 $sel_app = $_SESSION["sel_app"];
103         else
104                 $sel_app = $def_app;
105         $_SESSION["sel_app"] = $sel_app;
106         if (isset($_SESSION["App"]) && is_object($_SESSION["App"]))
107                 $_SESSION["App"]->selected_application = $sel_app;
108         $encoding = $_SESSION['language']->encoding;
109
110         if (!headers_sent()){
111                 header("Content-type: text/html; charset='$encoding'");
112         }
113         echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n";
114         echo "<html dir='" . $_SESSION['language']->dir . "' >\n";
115         echo "<head><title>$title</title>";
116         echo "<meta http-equiv='Content-type' content='text/html; charset=$encoding'>";
117         echo "<link href='$local_path_to_root/themes/$theme/default.css' rel='stylesheet' type='text/css'> \n";
118         send_scripts($js);
119
120         echo "</head> \n";
121         if ($onload == "")
122                 echo "<body>";
123         else
124                 echo "<body onload=\"$onload\">";
125         include_once($local_path_to_root."/themes/".user_theme()."/renderer.php");
126         $rend = new renderer();
127         $rend->menu_header($title, $no_menu, $is_index);
128 }
129
130 ?>