replaced "foo" with 'foo' while doing other
[squirrelmail.git] / functions / page_header.php
CommitLineData
59177427 1<?php
3302d0d4 2 /**
a09387f4 3 ** page_header.php
3302d0d4 4 **
5 ** Prints the page header (duh)
6 **
245a6892 7 ** $Id$
3302d0d4 8 **/
9
2a32fc83 10 session_start();
11
d068c0ec 12 $page_header_php = true;
13
d30d79f2 14 if (!isset($prefs_php))
15 include ("../functions/prefs.php");
e8816411 16 if (!isset($i18n_php))
17 include ("../functions/i18n.php");
7b086a80 18 if (!isset($plugin_php))
19 include ("../functions/plugin.php");
44139266 20
03ff39b2 21 // Check to see if gettext is installed
441f2d33 22 set_up_language(getPref($data_dir, $username, "language"));
d30d79f2 23
e8816411 24 // This is done to ensure that the character set is correct.
25 if ($default_charset != "")
26 header ("Content-Type: text/html; charset=$default_charset");
27
a3ab54ab 28 function displayHtmlHeader ($title="SquirrelMail") {
8df1c96e 29 global $theme_css;
30
2a833d72 31 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">';
32 echo "\n\n";
33 echo "<HTML>\n";
34 echo "<HEAD>\n";
8df1c96e 35 if ($theme_css != "") {
36 printf ('<LINK REL="stylesheet" TYPE="text/css" HREF="%s">',
37 $theme_css);
38 echo "\n";
39 }
7b086a80 40
41 do_hook ("generic_header");
42
04632dbc 43 echo "<TITLE>$title</TITLE>\n";
2a833d72 44 echo "</HEAD>\n\n";
45 }
46
5bbe20e4 47 function displayInternalLink ($path, $text, $target="") {
48 global $base_uri;
49
50 if ($target != "")
51 $target = " target=\"$target\"";
d68a3926 52
5bbe20e4 53 echo '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>';
54 }
55
f8f9bed9 56 function displayPageHeader($color, $mailbox) {
67a42d95 57 displayHtmlHeader ();
2a833d72 58
59 printf('<BODY TEXT="%s" BGCOLOR="%s" LINK="%s" VLINK="%s" ALINK="%s">',
60 $color[8], $color[4], $color[7], $color[7], $color[7]);
761d149e 61 echo "\n\n";
2a833d72 62
3302d0d4 63 /** Here is the header and wrapping table **/
64 $shortBoxName = readShortMailboxName($mailbox, ".");
390372b4 65 echo "<A NAME=pagetop></A>\n";
761d149e 66 echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 WIDTH=\"100%\" CELLSPACING=0 CELLPADDING=2>\n";
67 echo " <TR BGCOLOR=\"$color[9]\">\n";
5bbe20e4 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";
88c81396 71 echo " <div align=right>" . _("Current Folder") . ": <B>$shortBoxName&nbsp;</B></div>\n";
761d149e 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";
776c7431 77 echo " <TD ALIGN=left WIDTH=\"99%\">\n";
d76f6440 78 $urlMailbox = urlencode($mailbox);
5bbe20e4 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";
8d455c73 87 displayInternalLink ("src/search.php?mailbox=$urlMailbox", _("Search"), "right");
88 echo "&nbsp;&nbsp;\n";
d68a3926 89 displayInternalLink ("src/help.php", _("Help"), "right");
5bbe20e4 90 echo "&nbsp;&nbsp;\n";
7b086a80 91
92 do_hook("menuline");
93
776c7431 94 echo " </TD><TD ALIGN=right nowrap WIDTH=\"1%\">\n";
4dc80232 95 echo " <A HREF=\"http://www.squirrelmail.org/\" TARGET=\"_top\">SquirrelMail</A>\n";
761d149e 96 echo " </TD>\n";
97 echo " </TR>\n";
98 echo "</TABLE>\n\n";
3302d0d4 99 }
100?>