024a40f82b84e4fdb4fc58b606a87f8894493dd4
[squirrelmail.git] / functions / display_messages.php
1 <?php
2
3 /**
4 * display_messages.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This contains all messages, including information, error, and just
10 * about any other message you can think of.
11 *
12 * $Id$
13 */
14
15 /**
16 * Find out where squirrelmail lives and try to be smart about it.
17 * The only problem would be when squirrelmail lives in directories
18 * called "src", "functions", or "plugins", but people who do that need
19 * to be beaten with a steel pipe anyway.
20 *
21 * @return the base uri of squirrelmail installation.
22 */
23 function sqm_baseuri(){
24 global $base_uri, $PHP_SELF;
25 /**
26 * If it is in the session, just return it.
27 */
28 if (isset($base_uri)){
29 return $base_uri;
30 }
31 $dirs = array("|src/.*|", "|plugins/.*|", "|functions/.*|");
32 $repl = array("", "", "");
33 $base_uri = preg_replace($dirs, $repl, $PHP_SELF);
34 return $base_uri;
35 }
36
37 function error_username_password_incorrect() {
38 global $frame_top, $color;
39 /* XXX: Should really not start the HTML before this, or close off more
40 cleanly. */
41
42 if (!isset($frame_top)) {
43 $frame_top = '_top';
44 }
45
46 echo '<BR>'.
47 '<TABLE COLS=1 WIDTH="75%" BORDER="0" BGCOLOR="' . $color[4] . '" ALIGN=CENTER>'.
48 '<TR BGCOLOR="' . $color[0] . '">'.
49 '<TH>' . _("ERROR") . '</TH>'.
50 '</TR>' .
51 '<TR><TD>'.
52 '<CENTER><BR>' . _("Unknown user or password incorrect.") .
53 '<BR><A HREF="' . sqm_baseuri() . '"login.php" TARGET='.
54 $frame_top.'>' . _("Click here to try again") .
55 '</A>.</CENTER>'.
56 '</TD></TR>'.
57 '</TABLE>'.
58 '</BODY></HTML>';
59 }
60
61 function general_info($motd, $org_logo, $version, $org_name, $color) {
62
63 echo '<BR>'.
64 "<TABLE COLS=1 WIDTH=\"80%\" CELLSPACING=0 CELLPADDING=2 BORDER=\"0\" ALIGN=CENTER><TR><TD BGCOLOR=\"$color[9]\">".
65 '<TABLE COLS=1 WIDTH="100%" CELLSPACING=0 CELLPADDING=3 BORDER="0" BGCOLOR="' . $color[4] . '" ALIGN=CENTER>'.
66 '<TR>' .
67 "<TD BGCOLOR=\"$color[0]\">" .
68 '<B><CENTER>';
69 printf (_("Welcome to %s's WebMail system"), $org_name);
70 echo '</CENTER></B>'.
71 '<TR><TD BGCOLOR="' . $color[4] . '">'.
72 '<TABLE COLS=2 WIDTH="90%" CELLSPACING=0 CELLPADDING=3 BORDER="0" align="center">'.
73 '<TR>'.
74 '<TD BGCOLOR="' . $color[4] . '"><CENTER>';
75 if ( strlen($org_logo) > 3 ) {
76 echo "<IMG SRC=\"$org_logo\">";
77 } else {
78 echo "<B>$org_name</B>";
79 }
80 echo '<BR><CENTER>';
81 printf (_("Running SquirrelMail version %s (c) 1999-2001."), $version);
82 echo '</CENTER><BR>'.
83 '</CENTER></TD></TR><TR>' .
84 '<TD BGCOLOR="' . $color[4] . '">' .
85 $motd.
86 '</TD>'.
87 '</TR>'.
88 '</TABLE>'.
89 '</TD></TR>'.
90 '</TABLE>'.
91 '</TD></TR></TABLE>';
92 }
93
94 function error_message($message, $mailbox, $sort, $startMessage, $color) {
95 $urlMailbox = urlencode($mailbox);
96
97 echo '<BR>'.
98 "<TABLE COLS=1 WIDTH=\"70%\" BORDER=\"0\" BGCOLOR=\"$color[4]\" ALIGN=CENTER>".
99 '<TR>'.
100 "<TD BGCOLOR=\"$color[0]\">".
101 "<FONT COLOR=\"$color[2]\"><B><CENTER>" . _("ERROR") . '</CENTER></B></FONT>'.
102 '</TD></TR><TR><TD>'.
103 "<CENTER><BR>$message<BR>\n".
104 '<BR>'.
105 "<A HREF=\"" . sqm_baseuri()
106 . "right_main.php?sort=$sort&amp;startMessage=$startMessage"
107 . "&amp;mailbox=$urlMailbox\">";
108 printf (_("Click here to return to %s"), $mailbox);
109 echo '</A>.'.
110 '</TD></TR>'.
111 '</TABLE>';
112 }
113
114 function plain_error_message($message, $color) {
115 echo "<br><TABLE COLS=1 WIDTH=\"70%\" BORDER=\"0\" BGCOLOR=\"$color[4]\" ALIGN=CENTER>".
116 '<TR>'.
117 "<TD BGCOLOR=\"$color[0]\">".
118 "<FONT COLOR=\"$color[2]\"><B><CENTER>" . _("ERROR") . '</CENTER></B></FONT>'.
119 '</TD></TR><TR><TD>'.
120 "<CENTER><BR>$message".
121 '</CENTER>'.
122 '</TD></TR>'.
123 '</TABLE>';
124 }
125
126 function logout_error( $errString, $errTitle = '' ) {
127
128 GLOBAL $frame_top, $org_logo, $org_name, $org_logo_width, $org_logo_height,
129 $hide_sm_attributions, $version, $DOCUMENT_ROOT;
130 $base_uri = sqm_baseuri();
131 include_once($DOCUMENT_ROOT . $base_uri . 'functions/page_header.php' );
132 if ( !isset( $org_logo ) ) {
133 // Don't know yet why, but in some accesses $org_logo is not set.
134 include( $DOCUMENT_ROOT . $base_uri . 'config/config.php' );
135 }
136 /* Display width and height like good little people */
137 $width_and_height = '';
138 if (isset($org_logo_width) && is_int($org_logo_width) && $org_logo_width>0) {
139 $width_and_height = " WIDTH=\"$org_logo_width\"";
140 }
141 if (isset($org_logo_height) && is_int($org_logo_height) && $org_logo_height>0) {
142 $width_and_height .= " HEIGHT=\"$org_logo_height\"";
143 }
144
145 if (!isset($frame_top) || $frame_top == '' ) {
146 $frame_top = '_top';
147 }
148
149 if ( !isset( $color ) ) {
150 $color = array();
151 $color[0] = '#DCDCDC'; /* light gray TitleBar */
152 $color[1] = '#800000'; /* red */
153 $color[2] = '#CC0000'; /* light red Warning/Error Messages */
154 $color[3] = '#A0B8C8'; /* green-blue Left Bar Background */
155 $color[4] = '#FFFFFF'; /* white Normal Background */
156 $color[5] = '#FFFFCC'; /* light yellow Table Headers */
157 $color[6] = '#000000'; /* black Text on left bar */
158 $color[7] = '#0000CC'; /* blue Links */
159 $color[8] = '#000000'; /* black Normal text */
160 $color[9] = '#ABABAB'; /* mid-gray Darker version of #0 */
161 $color[10] = '#666666'; /* dark gray Darker version of #9 */
162 $color[11] = '#770000'; /* dark red Special Folders color */
163 $color[12] = '#EDEDED';
164 $color[15] = '#002266'; /* (dark blue) Unselectable folders */
165 }
166
167 if ( $errTitle == '' ) {
168 $errTitle = $errString;
169 }
170 set_up_language($squirrelmail_language, true);
171 displayHtmlHeader( $errTitle );
172
173 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n\n" .
174 '<CENTER>'.
175 "<IMG SRC=\"$org_logo\" ALT=\"" . sprintf(_("%s Logo"), $org_name) .
176 "\"$width_and_height><BR>\n".
177 ( $hide_sm_attributions ? '' :
178 '<SMALL>' . sprintf (_("SquirrelMail version %s"), $version) . "<BR>\n".
179 ' ' . _("By the SquirrelMail Development Team") . "<BR></SMALL>\n" ) .
180 "<table cellspacing=1 cellpadding=0 bgcolor=\"$color[1]\" width=\"70%\"><tr><td>".
181 "<TABLE COLS=1 WIDTH=\"100%\" BORDER=\"0\" BGCOLOR=\"$color[4]\" ALIGN=CENTER>".
182 "<TR><TD BGCOLOR=\"$color[0]\">".
183 "<FONT COLOR=\"$color[2]\"><B><CENTER>" . _("ERROR") .
184 '</CENTER></B></FONT></TD></TR>'.
185 '<TR><TD><CENTER>' . $errString . '</CENTER></TD></TR>'.
186 "<TR><TD BGCOLOR=\"$color[0]\">".
187 "<FONT COLOR=\"$color[2]\"><B><CENTER>".
188 '<a href="' . $base_uri . 'src/login.php" target="' .
189 $frame_top . '">' .
190 _("Go to the login page") . "</a></CENTER></B></FONT>".
191 '</TD></TR>'.
192 '</TABLE></td></tr></table></body></html>';
193 }
194
195 ?>