- fixed bugs in sorting by from and subject
[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 if (!isset($plugin_php))
18 include ("../functions/plugin.php");
19
20 // Check to see if gettext is installed
21 if (function_exists("_")) {
22 // Setting the language to use for gettext if it is not English
23 // (the default language) or empty.
24 $squirrelmail_language = getPref ($data_dir, $username, "language");
25 if ($squirrelmail_language != "en" && $squirrelmail_language != "") {
26 putenv("LC_ALL=$squirrelmail_language");
27 bindtextdomain("squirrelmail", "../locale/");
28 textdomain("squirrelmail");
29 $default_charset = $languages[$squirrelmail_language]["CHARSET"];
30 }
31 } else {
32 function _($string) {
33 return $string;
34 }
35 }
36
37 // This is done to ensure that the character set is correct.
38 if ($default_charset != "")
39 header ("Content-Type: text/html; charset=$default_charset");
40
41 function displayHtmlHeader ($title="SquirrelMail") {
42 global $theme_css;
43
44 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">';
45 echo "\n\n";
46 echo "<HTML>\n";
47 echo "<HEAD>\n";
48 if ($theme_css != "") {
49 printf ('<LINK REL="stylesheet" TYPE="text/css" HREF="%s">',
50 $theme_css);
51 echo "\n";
52 }
53
54 do_hook ("generic_header");
55
56 echo "<TITLE>$title</TITLE>";
57 echo "</HEAD>\n\n";
58 }
59
60 function displayInternalLink ($path, $text, $target="") {
61 global $base_uri;
62
63 if ($target != "")
64 $target = " target=\"$target\"";
65
66 echo '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>';
67 }
68
69 function displayPageHeader($color, $mailbox) {
70 displayHtmlHeader ($color);
71
72 printf('<BODY TEXT="%s" BGCOLOR="%s" LINK="%s" VLINK="%s" ALINK="%s">',
73 $color[8], $color[4], $color[7], $color[7], $color[7]);
74 echo "\n\n";
75
76 /** Here is the header and wrapping table **/
77 $shortBoxName = readShortMailboxName($mailbox, ".");
78 $shortBoxName = stripslashes($shortBoxName);
79 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
80 echo " <TR BGCOLOR=\"$color[9]\">\n";
81 echo " <TD ALIGN=left WIDTH=\"30%\"><b>\n";
82 displayInternalLink ("src/signout.php", _("Sign Out"), "_top");
83 echo " </b></TD><TD ALIGN=right WIDTH=\"70%\">\n";
84 echo " <div align=right>" . _("Current Folder: ") . "<B>$shortBoxName&nbsp;</B></div>\n";
85 echo " </TD>\n";
86 echo " </TR>\n";
87 echo "</TABLE>\n\n";
88 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
89 echo " <TR>\n";
90 echo " <TD ALIGN=left WIDTH=\"70%\">\n";
91 $urlMailbox = $mailbox;
92 displayInternalLink ("src/compose.php?mailbox=$urlMailbox", _("Compose"), "right");
93 echo "&nbsp;&nbsp;\n";
94 displayInternalLink ("src/addressbook.php", _("Addresses"), "right");
95 echo "&nbsp;&nbsp;\n";
96 displayInternalLink ("src/folders.php", _("Folders"), "right");
97 echo "&nbsp;&nbsp;\n";
98 displayInternalLink ("src/options.php", _("Options"), "right");
99 echo "&nbsp;&nbsp;\n";
100 displayInternalLink ("src/webmail.php?right_frame=help.php", _("Help"), "Help Me!");
101 echo "&nbsp;&nbsp;\n";
102
103 do_hook("menuline");
104
105 echo " </TD><TD ALIGN=right WIDTH=\"30%\">\n";
106 echo " <A HREF=\"http://www.squirrelmail.org/index.php3?from=1\" TARGET=\"_top\">SquirrelMail</A>\n";
107 echo " </TD>\n";
108 echo " </TR>\n";
109 echo "</TABLE>\n\n";
110 }
111 ?>