fixed several parse errors with gettext stuff
[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
f8f9bed9 9 function displayPageHeader($color, $mailbox) {
3302d0d4 10 /** Here is the header and wrapping table **/
11 $shortBoxName = readShortMailboxName($mailbox, ".");
f8f9bed9 12 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 COLS=2 WIDTH=100% CELLSPACING=0 CELLPADDING=2>";
aa767081 13 echo " <TR BGCOLOR=\"$color[9]\" WIDTH=100%>";
a044cee3 14 echo " <TD ALIGN=left WIDTH=30%>";
32c7898c 15 echo " <FONT FACE=\"Arial,Helvetica\"><A HREF=\"signout.php\" TARGET=_top><B>" . _("Sign Out") . "</B></A></FONT>";
a044cee3 16 echo " </TD><TD ALIGN=right WIDTH=70%>";
32c7898c 17 echo " <FONT FACE=\"Arial,Helvetica\"><div align=right>" . _("Current Folder: ") . "<B>$shortBoxName&nbsp;</div></B></FONT>";
3302d0d4 18 echo " </TD>";
a044cee3 19 echo " </TR></TABLE>\n";
f8f9bed9 20 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 COLS=2 WIDTH=100% CELLSPACING=0 CELLPADDING=2><TR>";
a044cee3 21 echo " <TD ALIGN=left WIDTH=70%>";
32c7898c 22 echo " <FONT FACE=\"Arial,Helvetica\"><A HREF=\"compose.php\">" . _("Compose") . "</A></FONT>&nbsp&nbsp";
9f9d7d28 23 echo " <FONT FACE=\"Arial,Helvetica\">". _("Addresses") ."</FONT>&nbsp&nbsp";
32c7898c 24 echo " <FONT FACE=\"Arial,Helvetica\"><A HREF=\"folders.php\">" . _("Folders") . "</A></FONT>&nbsp&nbsp";
25 echo " <FONT FACE=\"Arial,Helvetica\"><A HREF=\"options.php\">" . _("Options") . "</A></FONT>&nbsp&nbsp";
a044cee3 26 echo " </TD><TD ALIGN=right WIDTH=30%>";
8dc0fb27 27 echo " <FONT FACE=\"Arial,Helvetica\"><A HREF=\"http://squirrelmail.sourceforge.net\" TARGET=_top>SquirrelMail</A></FONT>";
3302d0d4 28 echo " </TD>";
29 echo "</TABLE>";
30 }
31?>