Added html_top and html_bottom hooks to read_body for compression plugin
[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 set_up_language(getPref($data_dir, $username, "language"));
22
23 // This is done to ensure that the character set is correct.
24 if ($default_charset != "")
25 header ("Content-Type: text/html; charset=$default_charset");
26
27 function displayHtmlHeader ($title="SquirrelMail") {
28 global $theme_css;
29
30 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">';
31 echo "\n\n";
32 echo "<HTML>\n";
33 echo "<HEAD>\n";
34 if ($theme_css != "") {
35 printf ('<LINK REL="stylesheet" TYPE="text/css" HREF="%s">',
36 $theme_css);
37 echo "\n";
38 }
39
40 do_hook ("generic_header");
41
42 echo "<TITLE>$title</TITLE>\n";
43 echo "</HEAD>\n\n";
44 }
45
46 function displayInternalLink ($path, $text, $target="") {
47 global $base_uri;
48
49 if ($target != "")
50 $target = " target=\"$target\"";
51
52 echo '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>';
53 }
54
55 function displayPageHeader($color, $mailbox) {
56 displayHtmlHeader ($color);
57
58 printf('<BODY TEXT="%s" BGCOLOR="%s" LINK="%s" VLINK="%s" ALINK="%s">',
59 $color[8], $color[4], $color[7], $color[7], $color[7]);
60 echo "\n\n";
61
62 /** Here is the header and wrapping table **/
63 $shortBoxName = readShortMailboxName($mailbox, ".");
64 $shortBoxName = sqStripSlashes($shortBoxName);
65 echo "<A NAME=pagetop></A>\n";
66 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
67 echo " <TR BGCOLOR=\"$color[9]\">\n";
68 echo " <TD ALIGN=left WIDTH=\"30%\"><b>\n";
69 displayInternalLink ("src/signout.php", _("Sign Out"), "_top");
70 echo " </b></TD><TD ALIGN=right WIDTH=\"70%\">\n";
71 echo " <div align=right>" . _("Current Folder") . ": <B>$shortBoxName&nbsp;</B></div>\n";
72 echo " </TD>\n";
73 echo " </TR>\n";
74 echo "</TABLE>\n\n";
75 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
76 echo " <TR>\n";
77 echo " <TD ALIGN=left WIDTH=\"99%\">\n";
78 $urlMailbox = urlencode($mailbox);
79 displayInternalLink ("src/compose.php?mailbox=$urlMailbox", _("Compose"), "right");
80 echo "&nbsp;&nbsp;\n";
81 displayInternalLink ("src/addressbook.php", _("Addresses"), "right");
82 echo "&nbsp;&nbsp;\n";
83 displayInternalLink ("src/folders.php", _("Folders"), "right");
84 echo "&nbsp;&nbsp;\n";
85 displayInternalLink ("src/options.php", _("Options"), "right");
86 echo "&nbsp;&nbsp;\n";
87 displayInternalLink ("src/search.php?mailbox=$urlMailbox", _("Search"), "right");
88 echo "&nbsp;&nbsp;\n";
89 displayInternalLink ("src/help.php", _("Help"), "right");
90 echo "&nbsp;&nbsp;\n";
91
92 do_hook("menuline");
93
94 echo " </TD><TD ALIGN=right nowrap WIDTH=\"1%\">\n";
95 echo " <A HREF=\"http://www.squirrelmail.org/index.php3?from=1\" TARGET=\"_top\">SquirrelMail</A>\n";
96 echo " </TD>\n";
97 echo " </TR>\n";
98 echo "</TABLE>\n\n";
99 }
100 ?>