5 ** Prints the page header (duh)
10 if (defined('page_header_php'))
12 define('page_header_php', true);
14 // Always set up the language before calling these functions
16 function displayHtmlHeader ($title="SquirrelMail") {
19 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">' .
20 "\n\n<HTML>\n<HEAD>\n";
21 if ($theme_css != '') {
22 echo "<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"$theme_css\">\n";
25 do_hook ("generic_header");
27 echo "<TITLE>$title</TITLE>\n";
31 function displayInternalLink ($path, $text, $target='') {
35 $target = " target=\"$target\"";
37 echo '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>';
40 function displayPageHeader($color, $mailbox) {
43 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";
45 /** Here is the header and wrapping table **/
46 $shortBoxName = readShortMailboxName($mailbox, ".");
47 echo "<A NAME=pagetop></A>\n";
48 echo "<table cellpadding=1 cellspacing=1 BGCOLOR=\"$color[9]\" width=100%><tr><td>";
49 echo "<TABLE BGCOLOR=\"$color[9]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
51 echo " <TD ALIGN=left><b>\n";
52 displayInternalLink ("src/signout.php", _("Sign Out"), "_top");
53 echo " </b></TD><TD ALIGN=right>\n";
54 echo ' ' . _("Current Folder") . ": <B>$shortBoxName </B>\n";
57 echo " <TR BGCOLOR=\"$color[4]\">\n";
58 echo " <TD ALIGN=left>\n";
59 $urlMailbox = urlencode($mailbox);
60 displayInternalLink ("src/compose.php?mailbox=$urlMailbox", _("Compose"), "right");
61 echo " \n";
62 displayInternalLink ("src/addressbook.php", _("Addresses"), "right");
63 echo " \n";
64 displayInternalLink ("src/folders.php", _("Folders"), "right");
65 echo " \n";
66 displayInternalLink ("src/options.php", _("Options"), "right");
67 echo " \n";
68 displayInternalLink ("src/search.php?mailbox=$urlMailbox", _("Search"), "right");
69 echo " \n";
70 displayInternalLink ("src/help.php", _("Help"), "right");
71 echo " \n";
75 echo " </TD><TD ALIGN=right>\n";
76 echo " <A HREF=\"http://www.squirrelmail.org/\" TARGET=\"_blank\">SquirrelMail</A>\n";
80 echo "</td></tr></table>";