b398c3474902dbfca5afa01d82059810179b95b4
[squirrelmail.git] / functions / page_header.php
1 <?php
2 /**
3 ** page_header.php
4 **
5 ** Prints the page header (duh)
6 **
7 ** $Id$
8 **/
9
10 if (defined('page_header_php'))
11 return;
12 define('page_header_php', true);
13
14 include('../src/validate.php');
15 include("../functions/prefs.php");
16 include("../functions/i18n.php");
17 include("../functions/plugin.php");
18
19 // Check to see if gettext is installed
20 $headers_sent=set_up_language(getPref($data_dir, $username, "language"));
21
22 // This is done to ensure that the character set is correct.
23 // But first checks whether we have already sent headers
24 // with charset when we were setting up the user language.
25 // Otherwise user ends up with the default charset overriding
26 // his selected one.
27 if (!$headers_sent && $default_charset != "")
28 header ("Content-Type: text/html; charset=$default_charset");
29
30 function displayHtmlHeader ($title="SquirrelMail") {
31 global $theme_css;
32
33 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">';
34 echo "\n\n";
35 echo "<HTML>\n";
36 echo "<HEAD>\n";
37 if ($theme_css != "") {
38 printf ('<LINK REL="stylesheet" TYPE="text/css" HREF="%s">',
39 $theme_css);
40 echo "\n";
41 }
42
43 do_hook ("generic_header");
44
45 echo "<TITLE>$title</TITLE>\n";
46 echo "</HEAD>\n\n";
47 }
48
49 function displayInternalLink ($path, $text, $target="") {
50 global $base_uri;
51
52 if ($target != "")
53 $target = " target=\"$target\"";
54
55 echo '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>';
56 }
57
58 function displayPageHeader($color, $mailbox) {
59 displayHtmlHeader ();
60
61 printf('<BODY TEXT="%s" BGCOLOR="%s" LINK="%s" VLINK="%s" ALINK="%s">',
62 $color[8], $color[4], $color[7], $color[7], $color[7]);
63 echo "\n\n";
64
65 /** Here is the header and wrapping table **/
66 $shortBoxName = readShortMailboxName($mailbox, ".");
67 echo "<A NAME=pagetop></A>\n";
68 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
69 echo " <TR BGCOLOR=\"$color[9]\">\n";
70 echo " <TD ALIGN=left WIDTH=\"30%\"><b>\n";
71 displayInternalLink ("src/signout.php", _("Sign Out"), "_top");
72 echo " </b></TD><TD ALIGN=right WIDTH=\"70%\">\n";
73 echo " <div align=right>" . _("Current Folder") . ": <B>$shortBoxName&nbsp;</B></div>\n";
74 echo " </TD>\n";
75 echo " </TR>\n";
76 echo "</TABLE>\n\n";
77 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
78 echo " <TR>\n";
79 echo " <TD ALIGN=left WIDTH=\"99%\">\n";
80 $urlMailbox = urlencode($mailbox);
81 displayInternalLink ("src/compose.php?mailbox=$urlMailbox", _("Compose"), "right");
82 echo "&nbsp;&nbsp;\n";
83 displayInternalLink ("src/addressbook.php", _("Addresses"), "right");
84 echo "&nbsp;&nbsp;\n";
85 displayInternalLink ("src/folders.php", _("Folders"), "right");
86 echo "&nbsp;&nbsp;\n";
87 displayInternalLink ("src/options.php", _("Options"), "right");
88 echo "&nbsp;&nbsp;\n";
89 displayInternalLink ("src/search.php?mailbox=$urlMailbox", _("Search"), "right");
90 echo "&nbsp;&nbsp;\n";
91 displayInternalLink ("src/help.php", _("Help"), "right");
92 echo "&nbsp;&nbsp;\n";
93
94 do_hook("menuline");
95
96 echo " </TD><TD ALIGN=right nowrap WIDTH=\"1%\">\n";
97 echo " <A HREF=\"http://www.squirrelmail.org/\" TARGET=\"_blank\">SquirrelMail</A>\n";
98 echo " </TD>\n";
99 echo " </TR>\n";
100 echo "</TABLE>\n\n";
101 }
102 ?>