* Removed another warning that shouldn't ever pop up, but it did with a
[squirrelmail.git] / functions / page_header.php
1 <?php
2 /**
3 ** page_header.php
4 **
5 ** Prints the page header (duh)
6 **
7 ** $Id$
8 **/
9
10 session_start();
11
12 $page_header_php = true;
13
14 if (!isset($prefs_php))
15 include ("../functions/prefs.php");
16 if (!isset($i18n_php))
17 include ("../functions/i18n.php");
18 if (!isset($plugin_php))
19 include ("../functions/plugin.php");
20
21 // Check to see if gettext is installed
22 $headers_sent=set_up_language(getPref($data_dir, $username, "language"));
23
24 // This is done to ensure that the character set is correct.
25 // But first checks whether we have already sent headers
26 // with charset when we were setting up the user language.
27 // Otherwise user ends up with the default charset overriding
28 // his selected one.
29 if (!$headers_sent && $default_charset != "")
30 header ("Content-Type: text/html; charset=$default_charset");
31
32 function displayHtmlHeader ($title="SquirrelMail") {
33 global $theme_css;
34
35 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">';
36 echo "\n\n";
37 echo "<HTML>\n";
38 echo "<HEAD>\n";
39 if ($theme_css != "") {
40 printf ('<LINK REL="stylesheet" TYPE="text/css" HREF="%s">',
41 $theme_css);
42 echo "\n";
43 }
44
45 do_hook ("generic_header");
46
47 echo "<TITLE>$title</TITLE>\n";
48 echo "</HEAD>\n\n";
49 }
50
51 function displayInternalLink ($path, $text, $target="") {
52 global $base_uri;
53
54 if ($target != "")
55 $target = " target=\"$target\"";
56
57 echo '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>';
58 }
59
60 function displayPageHeader($color, $mailbox) {
61 displayHtmlHeader ();
62
63 printf('<BODY TEXT="%s" BGCOLOR="%s" LINK="%s" VLINK="%s" ALINK="%s">',
64 $color[8], $color[4], $color[7], $color[7], $color[7]);
65 echo "\n\n";
66
67 /** Here is the header and wrapping table **/
68 $shortBoxName = readShortMailboxName($mailbox, ".");
69 echo "<A NAME=pagetop></A>\n";
70 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
71 echo " <TR BGCOLOR=\"$color[9]\">\n";
72 echo " <TD ALIGN=left WIDTH=\"30%\"><b>\n";
73 displayInternalLink ("src/signout.php", _("Sign Out"), "_top");
74 echo " </b></TD><TD ALIGN=right WIDTH=\"70%\">\n";
75 echo " <div align=right>" . _("Current Folder") . ": <B>$shortBoxName&nbsp;</B></div>\n";
76 echo " </TD>\n";
77 echo " </TR>\n";
78 echo "</TABLE>\n\n";
79 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
80 echo " <TR>\n";
81 echo " <TD ALIGN=left WIDTH=\"99%\">\n";
82 $urlMailbox = urlencode($mailbox);
83 displayInternalLink ("src/compose.php?mailbox=$urlMailbox", _("Compose"), "right");
84 echo "&nbsp;&nbsp;\n";
85 displayInternalLink ("src/addressbook.php", _("Addresses"), "right");
86 echo "&nbsp;&nbsp;\n";
87 displayInternalLink ("src/folders.php", _("Folders"), "right");
88 echo "&nbsp;&nbsp;\n";
89 displayInternalLink ("src/options.php", _("Options"), "right");
90 echo "&nbsp;&nbsp;\n";
91 displayInternalLink ("src/search.php?mailbox=$urlMailbox", _("Search"), "right");
92 echo "&nbsp;&nbsp;\n";
93 displayInternalLink ("src/help.php", _("Help"), "right");
94 echo "&nbsp;&nbsp;\n";
95
96 do_hook("menuline");
97
98 echo " </TD><TD ALIGN=right nowrap WIDTH=\"1%\">\n";
99 echo " <A HREF=\"http://www.squirrelmail.org/\" TARGET=\"_top\">SquirrelMail</A>\n";
100 echo " </TD>\n";
101 echo " </TR>\n";
102 echo "</TABLE>\n\n";
103 }
104 ?>