added extra variable to make it possible to add more lines to the onload
[squirrelmail.git] / functions / page_header.php
CommitLineData
59177427 1<?php
7350889b 2
35586184 3/**
4 * page_header.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Prints the page header (duh)
10 *
11 * $Id$
12 */
13
46d38f78 14require_once('../functions/strings.php');
43fdb2a4 15
35586184 16// Always set up the language before calling these functions
a07cd1a4 17function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE ) {
692155b7 18
2c21ef20 19 global $theme_css, $custom_css, $base_uri;
20
8f1ba72b 21 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">' .
22 "\n\n<HTML>\n<HEAD>\n";
2c21ef20 23
a714cb95 24 if ( !isset( $custom_css ) || $custom_css == 'none' ) {
692155b7 25 if ($theme_css != '') {
26 echo "<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"$theme_css\">\n";
27 }
8f1ba72b 28 } else {
2c21ef20 29 echo '<LINK REL="stylesheet" TYPE="text/css" HREF="' .
30 $base_uri . "themes/css/$custom_css\">\n";
8f1ba72b 31 }
32
8f1ba72b 33 echo "<title>$title</title>$xtra</head>\n\n";
a07cd1a4 34}
35
36function displayInternalLink($path, $text, $target='') {
37 global $base_uri;
38
39 if ($target != '') {
40 $target = " target=\"$target\"";
41 }
42
43 echo '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>';
44}
45
de19cd73 46function displayPageHeader($color, $mailbox, $xtra='') {
715225af 47
9c3e6cd4 48 global $delimiter, $hide_sm_attributions, $base_uri, $PHP_SELF, $frame_top, $compose_new_win, $username, $datadir;
715225af 49
715225af 50 $module = substr( $PHP_SELF, ( strlen( $PHP_SELF ) - strlen( $base_uri ) ) * -1 );
d03f3582 51 if (!isset($frame_top)) {
52 $frame_top = '_top';
53 }
715225af 54
55 /*
56 Locate the first displayable form element
57 */
58 switch ( $module ) {
59 case 'src/search.php':
60 $pos = getPref($data_dir, $username, 'search_pos', 0 ) - 1;
61 $onload = "onLoad=\"document.forms[$pos].elements[2].focus();\"";
aaf16822 62 displayHtmlHeader ();
715225af 63 break;
64 default:
aaf16822 65 $js = '<script language="JavaScript" type="text/javascript">' .
353616c4 66 "\n<!--\n" .
67 "function checkForm() {\n".
68 "var f = document.forms.length;\n".
69 "var i = 0;\n".
70 "var pos = -1;\n".
71 "while( pos == -1 && i < f ) {\n".
72 "var e = document.forms[i].elements.length;\n".
73 "var j = 0;\n".
74 "while( pos == -1 && j < e ) {\n".
75 "if ( document.forms[i].elements[j].type == 'text' ) {\n".
76 "pos = j;\n".
77 "}\n".
78 "j++;\n".
79 "}\n".
80 "i++;\n".
81 "}\n".
82 "if( pos >= 0 ) {\n".
83 "document.forms[i-1].elements[pos].focus();\n".
84 "}\n".
de19cd73 85 "$xtra\n".
9c3e6cd4 86 "}\n";
87 if ($compose_new_win == '1') {
88 $width= getPref($username, $datadir, 'editor_size', 76);
89 if ($width < 65) {
90 $pix_width = 560;
91 }
92 else {
93 $width = (.9*$width);
94 $pix_width = intval($width).'0';
95 }
aaf16822 96 $js .= "function comp_in_new() {\n".
9c3e6cd4 97 " var newwin = window.open(\"".$base_uri."src/compose.php\"".
98 ", \"compose_window\", \"width=".$pix_width.",height=650".
99 ",scrollbars=yes,resizable=yes\");\n".
100 "}\n";
101 }
aaf16822 102 $js .= "// -->\n".
de19cd73 103 "</script>\n";
715225af 104 $onload = "onLoad=\"checkForm();\"";
aaf16822 105 displayHtmlHeader ('Squirrelmail', $js);
715225af 106 break;
107
108 }
109
aaf16822 110
715225af 111 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\" $onload>\n\n";
a07cd1a4 112 /** Here is the header and wrapping table **/
113 $shortBoxName = readShortMailboxName($mailbox, $delimiter);
3b7d68e6 114 if ( $shortBoxName == 'INBOX' ) {
7da23762 115 $shortBoxName = _("INBOX");
116 }
a07cd1a4 117 echo "<A NAME=pagetop></A>\n"
118 . "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n"
119 . " <TR BGCOLOR=\"$color[9]\" >\n"
5bb2a991 120 . " <TD ALIGN=left>\n";
121 if ( $shortBoxName <> '' && strtolower( $shortBoxName ) <> 'none' ) {
122 echo ' ' . _("Current Folder") . ": <B>$shortBoxName&nbsp;</B>\n";
123 } else {
124 echo '&nbsp;';
125 }
126 echo " </TD>\n"
a07cd1a4 127 . " <TD ALIGN=right><b>\n";
80e86e94 128 displayInternalLink ('src/signout.php', _("Sign Out"), $frame_top);
a07cd1a4 129 echo " </b></TD>\n"
130 . " </TR>\n"
131 . " <TR BGCOLOR=\"$color[4]\">\n"
132 . " <TD ALIGN=left>\n";
133 $urlMailbox = urlencode($mailbox);
9c3e6cd4 134 if ($compose_new_win == '1') {
135 echo "<a href=$base_uri". "src/compose.php?mailbox=$urlMailbox target=".
9c8ba651 136 '"compose_window" onClick="comp_in_new()">'. _("Compose"). '</a>';
9c3e6cd4 137 }
138 else {
139 displayInternalLink ("src/compose.php?mailbox=$urlMailbox", _("Compose"), 'right');
140 }
a07cd1a4 141 echo "&nbsp;&nbsp;\n";
142 displayInternalLink ("src/addressbook.php", _("Addresses"), 'right');
143 echo "&nbsp;&nbsp;\n";
144 displayInternalLink ("src/folders.php", _("Folders"), 'right');
145 echo "&nbsp;&nbsp;\n";
146 displayInternalLink ("src/options.php", _("Options"), 'right');
147 echo "&nbsp;&nbsp;\n";
148 displayInternalLink ("src/search.php?mailbox=$urlMailbox", _("Search"), 'right');
149 echo "&nbsp;&nbsp;\n";
150 displayInternalLink ("src/help.php", _("Help"), 'right');
151 echo "&nbsp;&nbsp;\n";
152
153 do_hook("menuline");
154
155 echo " </TD><TD ALIGN=right>\n";
156 echo ($hide_sm_attributions ? '&nbsp;' :
826b7f71 157 "<A HREF=\"http://www.squirrelmail.org/\" TARGET=\"_blank\">SquirrelMail</A>\n");
a07cd1a4 158 echo " </TD>\n".
159 " </TR>\n".
160 "</TABLE>\n\n";
161}
2ba13803 162
9c3e6cd4 163/* blatently copied/truncated/modified from the above function */
164function compose_Header($color, $mailbox) {
165
166 global $delimiter, $hide_sm_attributions, $base_uri, $PHP_SELF, $frame_top, $compose_new_win;
167
9c3e6cd4 168
169 $module = substr( $PHP_SELF, ( strlen( $PHP_SELF ) - strlen( $base_uri ) ) * -1 );
170 if (!isset($frame_top)) {
171 $frame_top = '_top';
172 }
173
174 /*
175 Locate the first displayable form element
176 */
177 switch ( $module ) {
178 case 'src/search.php':
179 $pos = getPref($data_dir, $username, 'search_pos', 0 ) - 1;
180 $onload = "onLoad=\"document.forms[$pos].elements[2].focus();\"";
aaf16822 181 displayHtmlHeader (_("Compose"));
9c3e6cd4 182 break;
183 default:
aaf16822 184 $js = '<script language="JavaScript" type="text/javascript">' .
9c3e6cd4 185 "\n<!--\n" .
186 "function checkForm() {\n".
187 "var f = document.forms.length;\n".
188 "var i = 0;\n".
189 "var pos = -1;\n".
190 "while( pos == -1 && i < f ) {\n".
191 "var e = document.forms[i].elements.length;\n".
192 "var j = 0;\n".
193 "while( pos == -1 && j < e ) {\n".
194 "if ( document.forms[i].elements[j].type == 'text' ) {\n".
195 "pos = j;\n".
196 "}\n".
197 "j++;\n".
198 "}\n".
199 "i++;\n".
200 "}\n".
201 "if( pos >= 0 ) {\n".
202 "document.forms[i-1].elements[pos].focus();\n".
203 "}\n".
204 "}\n";
aaf16822 205 $js .= "// -->\n".
de19cd73 206 "</script>\n";
9c3e6cd4 207 $onload = "onLoad=\"checkForm();\"";
aaf16822 208 displayHtmlHeader (_("Compose"), $js);
9c3e6cd4 209 break;
210
211 }
212
213 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\" $onload>\n\n";
214}
43fdb2a4 215?>