** -> *
[squirrelmail.git] / functions / page_header.php
1 <?php
2
3 /**
4 * page_header.php
5 *
6 * Copyright (c) 1999-2001 The Squirrelmail Development Team
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
14 // Always set up the language before calling these functions
15
16 function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE ) {
17
18 global $theme_css;
19
20 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">' .
21 "\n\n<HTML>\n<HEAD>\n";
22
23 if ($theme_css != '') {
24 echo "<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"$theme_css\">\n";
25 }
26
27 if( $do_hook ) {
28 do_hook ("generic_header");
29 }
30
31 echo "<title>$title</title>$xtra</head>\n\n";
32
33 }
34
35 function displayInternalLink ($path, $text, $target='') {
36 global $base_uri;
37
38 if ($target != '')
39 $target = " target=\"$target\"";
40
41 echo '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>';
42 }
43
44 function displayPageHeader($color, $mailbox) {
45 global $delimiter, $hide_sm_attributions;
46 displayHtmlHeader ();
47
48 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\" onLoad='if ( ( document.forms.length > 0 ) && ( document.forms[0].elements[0].type == \"text\" ) ) { document.forms[0].elements[0].focus(); }'>\n\n";
49
50 /** Here is the header and wrapping table **/
51 $shortBoxName = readShortMailboxName($mailbox, $delimiter);
52 echo "<A NAME=pagetop></A>\n".
53 "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n".
54 " <TR BGCOLOR=\"$color[9]\" >\n".
55 " <TD ALIGN=left><b>\n";
56 displayInternalLink ("src/signout.php", _("Sign Out"), "_top");
57 echo " </b></TD><TD ALIGN=right>\n".
58 ' ' . _("Current Folder") . ": <B>$shortBoxName&nbsp;</B>\n".
59 " </TD>\n".
60 " </TR>\n".
61 " <TR BGCOLOR=\"$color[4]\">\n".
62 " <TD ALIGN=left>\n";
63 $urlMailbox = urlencode($mailbox);
64 displayInternalLink ("src/compose.php?mailbox=$urlMailbox", _("Compose"), "right");
65 echo "&nbsp;&nbsp;\n";
66 displayInternalLink ("src/addressbook.php", _("Addresses"), "right");
67 echo "&nbsp;&nbsp;\n";
68 displayInternalLink ("src/folders.php", _("Folders"), "right");
69 echo "&nbsp;&nbsp;\n";
70 displayInternalLink ("src/options.php", _("Options"), "right");
71 echo "&nbsp;&nbsp;\n";
72 displayInternalLink ("src/search.php?mailbox=$urlMailbox", _("Search"), "right");
73 echo "&nbsp;&nbsp;\n";
74 displayInternalLink ("src/help.php", _("Help"), "right");
75 echo "&nbsp;&nbsp;\n";
76
77 do_hook("menuline");
78
79 echo " </TD><TD ALIGN=right>\n";
80 echo ($hide_sm_attributions ? '&nbsp;' :
81 "<A HREF=\"http://www.squirrelmail.org/\" TARGET=\"_blank\">SquirrelMail</A>\n");
82 echo " </TD>\n".
83 " </TR>\n".
84 "</TABLE>\n\n";
85 // echo "</td></tr></table>";
86 }
87
88 ?>