e021557dee3b8398da02075c5ba0c3d77f8cbaeb
[squirrelmail.git] / functions / display_messages.php
1 <?php
2
3 /**
4 * display_messages.php
5 *
6 * Copyright (c) 1999-2003 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 $string = '<TR><TD ALIGN="center">'.
46 _("Unknown user or password incorrect.") .
47 '</TD></TR><TR><TD ALIGN="center">'.
48 '<A HREF="' . sqm_baseuri() . '"login.php" TARGET='.
49 $frame_top.'>' . _("Click here to try again") .
50 '</A>.'.
51 '</TD></TR>';
52 error_box($string,$color);
53 echo '</BODY></HTML>';
54 }
55
56 function error_message($message, $mailbox, $sort, $startMessage, $color) {
57 $urlMailbox = urlencode($mailbox);
58
59 $string = '<tr><td ALIGN="center">' . $message . '</td></tr>'."\n".
60 '<tr><td ALIGN="center">'.
61 '<A HREF="' . sqm_baseuri()
62 . "src/right_main.php?sort=$sort&amp;startMessage=$startMessage"
63 . "&amp;mailbox=$urlMailbox\">" .
64 sprintf (_("Click here to return to %s"), $mailbox) .
65 '</A></td></tr>';
66 error_box($string, $color);
67 }
68
69 function plain_error_message($message, $color) {
70 error_box($message, $color);
71 }
72
73 function logout_error( $errString, $errTitle = '' ) {
74 global $frame_top, $org_logo, $org_name, $org_logo_width, $org_logo_height,
75 $hide_sm_attributions, $version, $squirrelmail_language;
76
77 $base_uri = sqm_baseuri();
78
79 include_once( SM_PATH . 'functions/page_header.php' );
80 if ( !isset( $org_logo ) ) {
81 // Don't know yet why, but in some accesses $org_logo is not set.
82 include( SM_PATH . 'config/config.php' );
83 }
84 /* Display width and height like good little people */
85 $width_and_height = '';
86 if (isset($org_logo_width) && is_numeric($org_logo_width) && $org_logo_width>0) {
87 $width_and_height = " WIDTH=\"$org_logo_width\"";
88 }
89 if (isset($org_logo_height) && is_numeric($org_logo_height) && $org_logo_height>0) {
90 $width_and_height .= " HEIGHT=\"$org_logo_height\"";
91 }
92
93 if (!isset($frame_top) || $frame_top == '' ) {
94 $frame_top = '_top';
95 }
96
97 if ( !isset( $color ) ) {
98 $color = array();
99 $color[0] = '#DCDCDC'; /* light gray TitleBar */
100 $color[1] = '#800000'; /* red */
101 $color[2] = '#CC0000'; /* light red Warning/Error Messages */
102 $color[3] = '#A0B8C8'; /* green-blue Left Bar Background */
103 $color[4] = '#FFFFFF'; /* white Normal Background */
104 $color[5] = '#FFFFCC'; /* light yellow Table Headers */
105 $color[6] = '#000000'; /* black Text on left bar */
106 $color[7] = '#0000CC'; /* blue Links */
107 $color[8] = '#000000'; /* black Normal text */
108 $color[9] = '#ABABAB'; /* mid-gray Darker version of #0 */
109 $color[10] = '#666666'; /* dark gray Darker version of #9 */
110 $color[11] = '#770000'; /* dark red Special Folders color */
111 $color[12] = '#EDEDED';
112 $color[15] = '#002266'; /* (dark blue) Unselectable folders */
113 }
114
115 if ( $errTitle == '' ) {
116 $errTitle = $errString;
117 }
118 set_up_language($squirrelmail_language, true);
119
120 displayHtmlHeader( $errTitle, '', false );
121
122 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n\n" .
123 '<CENTER>'.
124 "<IMG SRC=\"$org_logo\" ALT=\"" . sprintf(_("%s Logo"), $org_name) .
125 "\"$width_and_height><BR>\n".
126 ( $hide_sm_attributions ? '' :
127 '<SMALL>' . sprintf (_("SquirrelMail version %s"), $version) . "<BR>\n".
128 ' ' . _("By the SquirrelMail Development Team") . "<BR></SMALL>\n" ) .
129 "<table cellspacing=1 cellpadding=0 bgcolor=\"$color[1]\" width=\"70%\"><tr><td>".
130 "<TABLE WIDTH=\"100%\" BORDER=\"0\" BGCOLOR=\"$color[4]\" ALIGN=CENTER>".
131 "<TR><TD BGCOLOR=\"$color[0]\" ALIGN=\"center\">".
132 "<FONT COLOR=\"$color[2]\"><B>" . _("ERROR") .
133 '</B></FONT></TD></TR>'.
134 '<TR><TD ALIGN="center">' . $errString . '</TD></TR>'.
135 "<TR><TD BGCOLOR=\"$color[0]\" ALIGN=\"center\">".
136 "<FONT COLOR=\"$color[2]\"><B>".
137 '<a href="' . $base_uri . 'src/login.php" target="' .
138 $frame_top . '">' .
139 _("Go to the login page") . "</a></B></FONT>".
140 '</TD></TR>'.
141 '</TABLE></td></tr></table></center></body></html>';
142 }
143
144 function error_box($string, $color) {
145 echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.' border="0" bgcolor="'.$color[9].'">';
146 echo ' <tr><td>';
147 echo ' <table width="100%" cellpadding="0" cellspacing="0" align="center" border="0" bgcolor="'.$color[4].'">';
148 echo ' <tr><td ALIGN="center" bgcolor="'.$color[0].'">';
149 echo ' <font color="' . $color[2].'"><b>' . _("ERROR") . ':</b></font>';
150 echo ' </td></tr>';
151 echo ' <tr><td>';
152 echo ' <table cellpadding="1" cellspacing="5" align="center" border="0">';
153 echo ' <tr>' . html_tag( 'td', $string."\n", 'left')
154 . '</tr>';
155 echo ' </table>';
156 echo ' </table></td></tr>';
157 echo ' </table>';
158 echo ' </td></tr>';
159 }
160 ?>