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 | |
35586184 |
14 | // Always set up the language before calling these functions |
a07cd1a4 |
15 | function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE ) { |
692155b7 |
16 | |
8f1ba72b |
17 | global $theme_css, $custom_css; |
18 | |
19 | echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">' . |
20 | "\n\n<HTML>\n<HEAD>\n"; |
21 | |
22 | if ( $custom_css == 'none' ) { |
692155b7 |
23 | if ($theme_css != '') { |
24 | echo "<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"$theme_css\">\n"; |
25 | } |
8f1ba72b |
26 | } else { |
27 | echo "<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"../themes/css/$custom_css\">\n"; |
28 | } |
29 | |
30 | if( $do_hook ) { |
31 | do_hook ("generic_header"); |
32 | } |
33 | |
34 | echo "<title>$title</title>$xtra</head>\n\n"; |
a07cd1a4 |
35 | } |
36 | |
37 | function displayInternalLink($path, $text, $target='') { |
38 | global $base_uri; |
39 | |
40 | if ($target != '') { |
41 | $target = " target=\"$target\""; |
42 | } |
43 | |
44 | echo '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>'; |
45 | } |
46 | |
47 | function displayPageHeader($color, $mailbox) { |
715225af |
48 | |
49 | global $delimiter, $hide_sm_attributions, $base_uri, $PHP_SELF; |
50 | |
a07cd1a4 |
51 | displayHtmlHeader (); |
52 | |
715225af |
53 | $module = substr( $PHP_SELF, ( strlen( $PHP_SELF ) - strlen( $base_uri ) ) * -1 ); |
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();\""; |
62 | break; |
63 | default: |
64 | echo ' |
65 | <script language="JavaScript"> |
66 | <!-- |
67 | function checkForm() { |
68 | |
69 | var f = document.forms.length; |
70 | var i = 0; |
71 | var pos = -1; |
72 | while( pos == -1 && i < f ) { |
73 | var e = document.forms[i].elements.length; |
74 | var j = 0; |
75 | while( pos == -1 && j < e ) { |
76 | if ( document.forms[i].elements[j].type == \'text\' ) { |
77 | pos = j; |
78 | } |
79 | j++; |
80 | } |
81 | i++; |
82 | } |
83 | if( pos >= 0 ) { |
84 | // document.write( "Si tio" ); |
85 | document.forms[i-1].elements[pos].focus(); |
86 | } |
87 | |
88 | } |
89 | --> |
90 | </script> |
91 | '; |
92 | $onload = "onLoad=\"checkForm();\""; |
93 | break; |
94 | |
95 | } |
96 | |
97 | echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\" $onload>\n\n"; |
a07cd1a4 |
98 | |
99 | /** Here is the header and wrapping table **/ |
100 | $shortBoxName = readShortMailboxName($mailbox, $delimiter); |
101 | echo "<A NAME=pagetop></A>\n" |
102 | . "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n" |
103 | . " <TR BGCOLOR=\"$color[9]\" >\n" |
104 | . " <TD ALIGN=left>\n" |
105 | . ' ' . _("Current Folder") . ": <B>$shortBoxName </B>\n" |
106 | . " </TD>\n" |
107 | . " <TD ALIGN=right><b>\n"; |
108 | displayInternalLink ('src/signout.php', _("Sign Out"), '_top'); |
109 | echo " </b></TD>\n" |
110 | . " </TR>\n" |
111 | . " <TR BGCOLOR=\"$color[4]\">\n" |
112 | . " <TD ALIGN=left>\n"; |
113 | $urlMailbox = urlencode($mailbox); |
114 | displayInternalLink ("src/compose.php?mailbox=$urlMailbox", _("Compose"), 'right'); |
115 | echo " \n"; |
116 | displayInternalLink ("src/addressbook.php", _("Addresses"), 'right'); |
117 | echo " \n"; |
118 | displayInternalLink ("src/folders.php", _("Folders"), 'right'); |
119 | echo " \n"; |
120 | displayInternalLink ("src/options.php", _("Options"), 'right'); |
121 | echo " \n"; |
122 | displayInternalLink ("src/search.php?mailbox=$urlMailbox", _("Search"), 'right'); |
123 | echo " \n"; |
124 | displayInternalLink ("src/help.php", _("Help"), 'right'); |
125 | echo " \n"; |
126 | |
127 | do_hook("menuline"); |
128 | |
129 | echo " </TD><TD ALIGN=right>\n"; |
130 | echo ($hide_sm_attributions ? ' ' : |
826b7f71 |
131 | "<A HREF=\"http://www.squirrelmail.org/\" TARGET=\"_blank\">SquirrelMail</A>\n"); |
a07cd1a4 |
132 | echo " </TD>\n". |
133 | " </TR>\n". |
134 | "</TABLE>\n\n"; |
135 | } |
2ba13803 |
136 | |
a07cd1a4 |
137 | ?> |