Removed font tags
[squirrelmail.git] / functions / page_header.php
CommitLineData
3302d0d4 1<?
2 /**
a09387f4 3 ** page_header.php
3302d0d4 4 **
5 ** Prints the page header (duh)
6 **
7 **/
8
d068c0ec 9 $page_header_php = true;
10
d30d79f2 11 if (!isset($prefs_php))
12 include ("../functions/prefs.php");
13
44139266 14 // This is done to ensure that the character set is correct when
15 // receiving input from HTTP forms
16 header ("Content-Type: text/html; charset=iso-8859-1");
17
d30d79f2 18 // Setting the language to use for gettext if it is not English
19 // (the default language) or empty.
288491a4 20 $squirrelmail_language = getPref ($data_dir, $username, "language");
d30d79f2 21 if ($squirrelmail_language != "en" && $squirrelmail_language != "") {
288491a4 22 putenv("LANG=$squirrelmail_language");
d30d79f2 23 bindtextdomain("squirrelmail", "../locale/");
24 textdomain("squirrelmail");
25
26 // Setting cookie to use on the login screen the next time the
27 // same user logs in.
288491a4 28 setcookie("squirrelmail_language", $squirrelmail_language,
29 time()+2592000);
d30d79f2 30 }
31
f8f9bed9 32 function displayPageHeader($color, $mailbox) {
3302d0d4 33 /** Here is the header and wrapping table **/
34 $shortBoxName = readShortMailboxName($mailbox, ".");
f8f9bed9 35 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 COLS=2 WIDTH=100% CELLSPACING=0 CELLPADDING=2>";
aa767081 36 echo " <TR BGCOLOR=\"$color[9]\" WIDTH=100%>";
a044cee3 37 echo " <TD ALIGN=left WIDTH=30%>";
aae41ae9 38 echo " <A HREF=\"signout.php\" TARGET=_top><B>" . _("Sign Out") . "</B></A>";
a044cee3 39 echo " </TD><TD ALIGN=right WIDTH=70%>";
aae41ae9 40 echo " <div align=right>" . _("Current Folder: ") . "<B>$shortBoxName&nbsp;</div></B>";
3302d0d4 41 echo " </TD>";
a044cee3 42 echo " </TR></TABLE>\n";
f8f9bed9 43 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 COLS=2 WIDTH=100% CELLSPACING=0 CELLPADDING=2><TR>";
a044cee3 44 echo " <TD ALIGN=left WIDTH=70%>";
aae41ae9 45 echo " <A HREF=\"compose.php\">" . _("Compose") . "</A>&nbsp&nbsp";
46 echo " ". _("Addresses") ."&nbsp&nbsp";
47 echo " <A HREF=\"folders.php\">" . _("Folders") . "</A>&nbsp&nbsp";
48 echo " <A HREF=\"options.php\">" . _("Options") . "</A>&nbsp&nbsp";
a044cee3 49 echo " </TD><TD ALIGN=right WIDTH=30%>";
aae41ae9 50 echo " <A HREF=\"http://squirrelmail.sourceforge.net\" TARGET=_top>SquirrelMail</A>";
3302d0d4 51 echo " </TD>";
52 echo "</TABLE>";
53 }
54?>