Fixed typo in error handling in displayHTMLHeader()
[squirrelmail.git] / functions / page_header.php
1 <?php
2
3 /**
4 * page_header.php
5 *
6 * Prints the page header (duh)
7 *
8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 */
13
14 /** Include required files from SM */
15 include_once(SM_PATH . 'functions/imap_mailbox.php');
16
17 /**
18 * Output a SquirrelMail page header, from <!doctype> to </head>
19 * Always set up the language before calling these functions.
20 *
21 * Since 1.5.1 function sends http headers. Function should be called
22 * before any output is started.
23 * @param string title the page title, default SquirrelMail.
24 * @param string xtra extra HTML to insert into the header
25 * @param bool do_hook whether to execute hooks, default true
26 * @param bool frames generate html frameset doctype (since 1.5.1)
27 * @return void
28 */
29 function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE, $frames = FALSE ) {
30 global $squirrelmail_language, $sTplDir, $oErrorHandler;
31
32 if ( !sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION) ) {
33 global $base_uri;
34 }
35 global $theme_css, $custom_css, $pageheader_sent, $theme, $theme_default, $text_direction,
36 $default_fontset, $chosen_fontset, $default_fontsize, $chosen_fontsize, $chosen_theme;
37
38 /* add no cache headers here */
39 header('Pragma: no-cache'); // http 1.0 (rfc1945)
40 header('Cache-Control: private, no-cache, no-store'); // http 1.1 (rfc2616)
41
42 if ($frames) {
43 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"'."\n"
44 .' "http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd">';
45 } else {
46 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"'."\n"
47 .' "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">';
48 }
49 echo "\n" . html_tag( 'html' ,'' , '', '', 'lang="'.$squirrelmail_language.'"' ) .
50 "<head>\n<meta name=\"robots\" content=\"noindex,nofollow\">\n";
51
52 $used_fontset = (!empty($chosen_fontset) ? $chosen_fontset : $default_fontset);
53 $used_fontsize = (!empty($chosen_fontsize) ? $chosen_fontsize : $default_fontsize);
54 $used_theme = basename((!empty($chosen_theme) ? $chosen_theme : $theme[$theme_default]['PATH']),'.php');
55
56 /*
57 * Add closing / to link and meta elements only after switching to xhtml 1.0 Transitional.
58 * It is not compatible with html 4.01 Transitional
59 */
60 echo '<link rel="stylesheet" type="text/css" href="'. $base_uri .'src/style.php'
61 .'?themeid='.$used_theme
62 .'&amp;templateid='.basename($sTplDir)
63 .(!empty($used_fontset) ? '&amp;fontset='.$used_fontset : '')
64 .(!empty($used_fontsize) ? '&amp;fontsize='.$used_fontsize : '')
65 .(!empty($text_direction) ? '&amp;dir='.$text_direction : '')."\">\n";
66
67 // load custom style sheet (deprecated)
68 if ( ! empty($theme_css) ) {
69 echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"$theme_css\">\n";
70 }
71
72 if ($squirrelmail_language == 'ja_JP') {
73 /*
74 * force correct detection of charset, when browser does not follow
75 * http content-type and tries to detect charset from page content.
76 * Shooting of browser's creator can't be implemented in php.
77 * We might get rid of it, if we follow http://www.w3.org/TR/japanese-xml/
78 * recommendations and switch to unicode.
79 */
80 echo "<!-- \xfd\xfe -->\n";
81 echo '<meta http-equiv="Content-type" content="text/html; charset=euc-jp">' . "\n";
82 }
83 if ($do_hook) {
84 do_hook('generic_header');
85 }
86
87 echo "<title>$title</title>\n$xtra\n";
88
89 /* work around IE6's scrollbar bug */
90 echo <<<ECHO
91 <style type="text/css">
92 <!--
93 /* avoid stupid IE6 bug with frames and scrollbars */
94 body {
95 voice-family: "\"}\"";
96 voice-family: inherit;
97 width: expression(document.documentElement.clientWidth - 30);
98 }
99 -->
100 </style>
101
102 ECHO;
103
104 echo "\n</head>\n\n";
105
106 /* this is used to check elsewhere whether we should call this function */
107 $pageheader_sent = TRUE;
108 if (isset($oErrorHandler)) {
109 $oErrorHandler->HeaderSent();
110 }
111 }
112
113 /**
114 * Given a path to a SquirrelMail file, return a HTML link to it
115 *
116 * @param string path the SquirrelMail file to link to
117 * @param string text the link text
118 * @param string target the target frame for this link
119 */
120 function makeInternalLink($path, $text, $target='') {
121 global $base_uri;
122 // sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION);
123 if ($target != '') {
124 $target = " target=\"$target\"";
125 }
126
127 // This is an inefficient hook and is only used by
128 // one plugin that still needs to patch this code,
129 // plus if we are templat-izing SM, visual hooks
130 // are not needed. However, I am leaving the code
131 // here just in case we find a good (non-visual?)
132 // use for the internal_link hook.
133 //
134 //$hooktext = do_hook_function('internal_link',$text);
135 //if ($hooktext != '')
136 // $text = $hooktext;
137
138 return '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>';
139 }
140
141 /**
142 * Same as makeInternalLink, but echoes it too
143 */
144 function displayInternalLink($path, $text, $target='') {
145 echo makeInternalLink($path, $text, $target);
146 }
147
148 /**
149 * Outputs a complete SquirrelMail page header, starting with <!doctype> and
150 * including the default menu bar. Uses displayHtmlHeader and takes
151 * JavaScript and locale settings into account.
152 *
153 * @param array color the array of theme colors
154 * @param string mailbox the current mailbox name to display
155 * @param string sHeaderJs javascipt code to be inserted in a script block in the header
156 * @param string sBodyTagJs js events to be inserted in the body tag
157 * @return void
158 */
159
160 function displayPageHeader($color, $mailbox, $sHeaderJs='', $sBodyTagJs = '') {
161
162 global $reply_focus, $hide_sm_attributions, $frame_top,
163 $provider_name, $provider_uri, $startMessage,
164 $javascript_on, $action, $oTemplate;
165
166 if (empty($sBodyTagJs)) {
167 if (strpos($action, 'reply') !== FALSE && $reply_focus) {
168 if ($reply_focus == 'select')
169 $sBodyTagJs = 'onload="checkForm(\'select\');"';
170 else if ($reply_focus == 'focus')
171 $sBodyTagJs = 'onload="checkForm(\'focus\');"';
172 else if ($reply_focus != 'none')
173 $sBodyTagJs = 'onload="checkForm();"';
174 }
175 else
176 $sBodyTagJs = 'onload="checkForm();"';
177 }
178
179 $urlMailbox = urlencode($mailbox);
180 $startMessage = (int)$startMessage;
181
182 $sTplDir = $oTemplate->template_dir;
183
184 sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION );
185
186 if (!isset($frame_top)) {
187 $frame_top = '_top';
188 }
189
190 if( $javascript_on || strpos($sHeaderJs, 'new_js_autodetect_results.value') ) {
191 $js_includes = $oTemplate->getJavascriptIncludes();
192 $sJsBlock = '';
193 foreach ($js_includes as $js_file) {
194 $sJsBlock .= '<script src="'.$js_file.'" type="text/javascript"></script>' ."\n";
195 }
196 if ($sHeaderJs) {
197 $sJsBlock .= "\n<script type=\"text/javascript\">" .
198 "\n<!--\n" .
199 $sHeaderJs . "\n\n// -->\n</script>\n";
200 }
201 displayHtmlHeader ('SquirrelMail', $sJsBlock);
202 } else {
203 /* do not use JavaScript */
204 displayHtmlHeader ('SquirrelMail');
205 $sBodyTagJs = '';
206 }
207 /*
208 * this explains the imap_mailbox.php dependency. We should instead store
209 * the selected mailbox in the session and fallback to the session var.
210 */
211 $shortBoxName = htmlspecialchars(imap_utf7_decode_local(
212 readShortMailboxName($mailbox, $delimiter)));
213 if ( $shortBoxName == 'INBOX' ) {
214 $shortBoxName = _("INBOX");
215 }
216
217 $sm_attributes = '';
218 if (!$hide_sm_attributions) {
219 $sm_attributes .= '<td class="sqm_providerInfo">' ."\n";
220 if (empty($provider_uri)) {
221 $sm_attributes .= ' <a href="about.php">SquirrelMail</a>';
222 } else {
223 if (empty($provider_name)) $provider_name= 'SquirrelMail';
224 $sm_attributes .= ' <a href="'.$provider_uri.'" target="_blank">'.$provider_name.'</a>'."\n";
225 }
226 $sm_attributes .= " </td>\n";
227 }
228
229 $oTemplate->assign('body_tag_js', $sBodyTagJs);
230 $oTemplate->assign('shortBoxName', $shortBoxName);
231 $oTemplate->assign('sm_attribute_str', $sm_attributes);
232 $oTemplate->assign('frame_top', $frame_top);
233 $oTemplate->assign('urlMailbox', $urlMailbox);
234 $oTemplate->assign('startMessage', $startMessage);
235 $oTemplate->assign('hide_sm_attributions', $hide_sm_attributions);
236 $oTemplate->display('page_header.tpl');
237 }
238
239 /**
240 * Blatantly copied/truncated/modified from displayPageHeader.
241 * Outputs a page header specifically for the compose_in_new popup window
242 *
243 * @param array color the array of theme colors
244 * @param string mailbox the current mailbox name to display
245 * @param string sHeaderJs javascipt code to be inserted in a script block in the header
246 * @param string sBodyTagJs js events to be inserted in the body tag
247 * @return void
248 */
249 function compose_Header($color, $mailbox, $sHeaderJs='', $sBodyTagJs = '') {
250
251 global $reply_focus, $javascript_on, $action, $oTemplate;
252
253 if (empty($sBodyTagJs)) {
254 if (strpos($action, 'reply') !== FALSE && $reply_focus) {
255 if ($reply_focus == 'select')
256 $sBodyTagJs = 'onload="checkForm(\'select\');"';
257 else if ($reply_focus == 'focus')
258 $sBodyTagJs = 'onload="checkForm(\'focus\');"';
259 else if ($reply_focus != 'none')
260 $sBodyTagJs = 'onload="checkForm();"';
261 }
262 else
263 $sBodyTagJs = 'onload="checkForm();"';
264 }
265
266
267 /*
268 * Locate the first displayable form element (only when JavaScript on)
269 */
270 if($javascript_on) {
271 if ($sHeaderJs) {
272 $sJsBlock = "\n<script type=\"text/javascript\">" .
273 "\n<!--\n" .
274 $sHeaderJs . "\n\n// -->\n</script>\n";
275 } else {
276 $sJsBlock = '';
277 }
278 $sJsBlock .= "\n";
279
280 $js_includes = $oTemplate->getJavascriptIncludes();
281 foreach ($js_includes as $js_file) {
282 $sJsBlock .= '<script src="'.$js_file.'" type="text/javascript"></script>' ."\n";
283 }
284
285 displayHtmlHeader (_("Compose"), $sJsBlock);
286 } else {
287 /* javascript off */
288 displayHtmlHeader(_("Compose"));
289 $onload = '';
290 }
291 echo "<body text=\"$color[8]\" bgcolor=\"$color[4]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\" $sBodyTagJs>\n\n";
292 }