Cleaned up generated HTML-code.
[squirrelmail.git] / functions / page_header.php
1 <?php
2 /**
3 ** page_header.php
4 **
5 ** Prints the page header (duh)
6 **
7 **/
8
9 session_start();
10
11 $page_header_php = true;
12
13 if (!isset($prefs_php))
14 include ("../functions/prefs.php");
15 if (!isset($i18n_php))
16 include ("../functions/i18n.php");
17
18 // Check to see if gettext is installed
19 if (function_exists("_")) {
20 // Setting the language to use for gettext if it is not English
21 // (the default language) or empty.
22 $squirrelmail_language = getPref ($data_dir, $username, "language");
23 if ($squirrelmail_language != "en" && $squirrelmail_language != "") {
24 putenv("LC_ALL=$squirrelmail_language");
25 bindtextdomain("squirrelmail", "../locale/");
26 textdomain("squirrelmail");
27 $default_charset = $languages[$squirrelmail_language]["CHARSET"];
28
29 // Setting cookie to use on the login screen the next time the
30 // same user logs in.
31 #setcookie("squirrelmail_language", $squirrelmail_language,
32 # time()+2592000);
33 $squirrelmail_language = $language;
34 }
35 } else {
36 function _($string) {
37 return $string;
38 }
39 }
40
41 // This is done to ensure that the character set is correct.
42 if ($default_charset != "")
43 header ("Content-Type: text/html; charset=$default_charset");
44
45 function displayHtmlHeader ($title="SquirrelMail") {
46 global $theme_css;
47
48 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">';
49 echo "\n\n";
50 echo "<HTML>\n";
51 echo "<HEAD>\n";
52 if ($theme_css != "") {
53 printf ('<LINK REL="stylesheet" TYPE="text/css" HREF="%s">',
54 $theme_css);
55 echo "\n";
56 }
57 echo "<TITLE>$title</TITLE>";
58 echo "</HEAD>\n\n";
59 }
60
61 function displayPageHeader($color, $mailbox) {
62 displayHtmlHeader ($color);
63
64 printf('<BODY TEXT="%s" BGCOLOR="%s" LINK="%s" VLINK="%s" ALINK="%s">',
65 $color[8], $color[4], $color[7], $color[7], $color[7]);
66 echo "\n\n";
67
68 /** Here is the header and wrapping table **/
69 $shortBoxName = readShortMailboxName($mailbox, ".");
70 $shortBoxName = stripslashes($shortBoxName);
71 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
72 echo " <TR BGCOLOR=\"$color[9]\">\n";
73 echo " <TD ALIGN=left WIDTH=\"30%\">\n";
74 echo " <A HREF=\"signout.php\" TARGET=\"_top\"><B>" . _("Sign Out") . "</B></A>\n";
75 echo " </TD><TD ALIGN=right WIDTH=\"70%\">\n";
76 echo " <div align=right>" . _("Current Folder: ") . "<B>$shortBoxName&nbsp;</B></div>\n";
77 echo " </TD>\n";
78 echo " </TR>\n";
79 echo "</TABLE>\n\n";
80 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
81 echo " <TR>\n";
82 echo " <TD ALIGN=left WIDTH=\"70%\">\n";
83 $urlMailbox = $mailbox;
84 echo " <A HREF=\"compose.php?mailbox=$urlMailbox\">" . _("Compose") . "</A>&nbsp;&nbsp;\n";
85 echo " <A HREF=\"addressbook.php\">" . _("Addresses") . "</A>&nbsp;&nbsp;\n";
86 echo " <A HREF=\"folders.php\">" . _("Folders") . "</A>&nbsp;&nbsp;\n";
87 echo " <A HREF=\"options.php\">" . _("Options") . "</A>&nbsp;&nbsp;\n";
88 echo " </TD><TD ALIGN=right WIDTH=\"30%\">\n";
89 echo " <A HREF=\"http://squirrelmail.sourceforge.net/index.php3?from=1\" TARGET=\"_top\">SquirrelMail</A>\n";
90 echo " </TD>\n";
91 echo " </TR>\n";
92 echo "</TABLE>\n\n";
93 }
94 ?>