Added a constat to all files in functions/ to be able to chech whether the
[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
44139266 11 // This is done to ensure that the character set is correct when
12 // receiving input from HTTP forms
13 header ("Content-Type: text/html; charset=iso-8859-1");
14
f8f9bed9 15 function displayPageHeader($color, $mailbox) {
3302d0d4 16 /** Here is the header and wrapping table **/
17 $shortBoxName = readShortMailboxName($mailbox, ".");
f8f9bed9 18 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 COLS=2 WIDTH=100% CELLSPACING=0 CELLPADDING=2>";
aa767081 19 echo " <TR BGCOLOR=\"$color[9]\" WIDTH=100%>";
a044cee3 20 echo " <TD ALIGN=left WIDTH=30%>";
32c7898c 21 echo " <FONT FACE=\"Arial,Helvetica\"><A HREF=\"signout.php\" TARGET=_top><B>" . _("Sign Out") . "</B></A></FONT>";
a044cee3 22 echo " </TD><TD ALIGN=right WIDTH=70%>";
32c7898c 23 echo " <FONT FACE=\"Arial,Helvetica\"><div align=right>" . _("Current Folder: ") . "<B>$shortBoxName&nbsp;</div></B></FONT>";
3302d0d4 24 echo " </TD>";
a044cee3 25 echo " </TR></TABLE>\n";
f8f9bed9 26 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 COLS=2 WIDTH=100% CELLSPACING=0 CELLPADDING=2><TR>";
a044cee3 27 echo " <TD ALIGN=left WIDTH=70%>";
32c7898c 28 echo " <FONT FACE=\"Arial,Helvetica\"><A HREF=\"compose.php\">" . _("Compose") . "</A></FONT>&nbsp&nbsp";
9f9d7d28 29 echo " <FONT FACE=\"Arial,Helvetica\">". _("Addresses") ."</FONT>&nbsp&nbsp";
32c7898c 30 echo " <FONT FACE=\"Arial,Helvetica\"><A HREF=\"folders.php\">" . _("Folders") . "</A></FONT>&nbsp&nbsp";
31 echo " <FONT FACE=\"Arial,Helvetica\"><A HREF=\"options.php\">" . _("Options") . "</A></FONT>&nbsp&nbsp";
a044cee3 32 echo " </TD><TD ALIGN=right WIDTH=30%>";
8dc0fb27 33 echo " <FONT FACE=\"Arial,Helvetica\"><A HREF=\"http://squirrelmail.sourceforge.net\" TARGET=_top>SquirrelMail</A></FONT>";
3302d0d4 34 echo " </TD>";
35 echo "</TABLE>";
36 }
37?>