Adding last two functions from i18n.php
[squirrelmail.git] / functions / display_messages.php
CommitLineData
59177427 1<?php
2ba13803 2
35586184 3/**
4 * display_messages.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
35586184 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$
d6c32258 13 * @package squirrelmail
35586184 14 */
3302d0d4 15
c94b297c 16/**
17 * Find out where squirrelmail lives and try to be smart about it.
18 * The only problem would be when squirrelmail lives in directories
19 * called "src", "functions", or "plugins", but people who do that need
20 * to be beaten with a steel pipe anyway.
21 *
d6c32258 22 * @return string the base uri of squirrelmail installation.
c94b297c 23 */
399846ea 24function sqm_baseuri(){
25 global $base_uri, $PHP_SELF;
c94b297c 26 /**
27 * If it is in the session, just return it.
28 */
399846ea 29 if (isset($base_uri)){
30 return $base_uri;
31 }
7e156b3d 32 $dirs = array('|src/.*|', '|plugins/.*|', '|functions/.*|');
33 $repl = array('', '', '');
399846ea 34 $base_uri = preg_replace($dirs, $repl, $PHP_SELF);
35 return $base_uri;
36}
37
ec5b189b 38function error_message($message, $mailbox, $sort, $startMessage, $color) {
39 $urlMailbox = urlencode($mailbox);
1cfc6983 40 if (strtoupper($mailbox) == 'INBOX')
41 $mailbox = _("INBOX");
fd2611e9 42 $string = '<tr><td ALIGN="center">' . $message . '</td></tr>'."\n".
43 '<tr><td ALIGN="center">'.
44 '<A HREF="' . sqm_baseuri()
90d3887e 45 . "src/right_main.php?sort=$sort&amp;startMessage=$startMessage"
fd2611e9 46 . "&amp;mailbox=$urlMailbox\">" .
42c45abc 47 sprintf (_("Click here to return to %s"), imap_utf7_decode_local($mailbox)) .
fd2611e9 48 '</A></td></tr>';
49 error_box($string, $color);
ec5b189b 50}
aa4c3749 51
ec5b189b 52function plain_error_message($message, $color) {
fd2611e9 53 error_box($message, $color);
ec5b189b 54}
b6d8d08d 55
9be8198d 56function logout_error( $errString, $errTitle = '' ) {
1f05436e 57 global $frame_top, $org_logo, $org_name, $org_logo_width, $org_logo_height,
35185c82 58 $hide_sm_attributions, $version, $squirrelmail_language;
59
399846ea 60 $base_uri = sqm_baseuri();
26f9a94a 61
62 include_once( SM_PATH . 'functions/page_header.php' );
9be8198d 63 if ( !isset( $org_logo ) ) {
64 // Don't know yet why, but in some accesses $org_logo is not set.
26f9a94a 65 include( SM_PATH . 'config/config.php' );
9be8198d 66 }
67 /* Display width and height like good little people */
68 $width_and_height = '';
e16cb07b 69 if (isset($org_logo_width) && is_numeric($org_logo_width) && $org_logo_width>0) {
9be8198d 70 $width_and_height = " WIDTH=\"$org_logo_width\"";
71 }
e16cb07b 72 if (isset($org_logo_height) && is_numeric($org_logo_height) && $org_logo_height>0) {
9be8198d 73 $width_and_height .= " HEIGHT=\"$org_logo_height\"";
74 }
75
76 if (!isset($frame_top) || $frame_top == '' ) {
77 $frame_top = '_top';
78 }
79
80 if ( !isset( $color ) ) {
81 $color = array();
82 $color[0] = '#DCDCDC'; /* light gray TitleBar */
83 $color[1] = '#800000'; /* red */
84 $color[2] = '#CC0000'; /* light red Warning/Error Messages */
9be8198d 85 $color[4] = '#FFFFFF'; /* white Normal Background */
9be8198d 86 $color[7] = '#0000CC'; /* blue Links */
87 $color[8] = '#000000'; /* black Normal text */
9be8198d 88 }
89
90 if ( $errTitle == '' ) {
91 $errTitle = $errString;
92 }
93 set_up_language($squirrelmail_language, true);
1f05436e 94
95 displayHtmlHeader( $errTitle, '', false );
96
9be8198d 97 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n\n" .
4cbcaebd 98 '<CENTER>';
99
100 if (isset($org_logo) && ($org_logo != '')) {
101 echo "<IMG SRC=\"$org_logo\" ALT=\"" . sprintf(_("%s Logo"), $org_name) .
102 "\"$width_and_height><BR>\n";
103 }
104 echo ( $hide_sm_attributions ? '' :
9be8198d 105 '<SMALL>' . sprintf (_("SquirrelMail version %s"), $version) . "<BR>\n".
106 ' ' . _("By the SquirrelMail Development Team") . "<BR></SMALL>\n" ) .
107 "<table cellspacing=1 cellpadding=0 bgcolor=\"$color[1]\" width=\"70%\"><tr><td>".
c9062c05 108 "<TABLE WIDTH=\"100%\" BORDER=\"0\" BGCOLOR=\"$color[4]\" ALIGN=CENTER>".
109 "<TR><TD BGCOLOR=\"$color[0]\" ALIGN=\"center\">".
110 "<FONT COLOR=\"$color[2]\"><B>" . _("ERROR") .
111 '</B></FONT></TD></TR>'.
112 '<TR><TD ALIGN="center">' . $errString . '</TD></TR>'.
113 "<TR><TD BGCOLOR=\"$color[0]\" ALIGN=\"center\">".
114 "<FONT COLOR=\"$color[2]\"><B>".
c94b297c 115 '<a href="' . $base_uri . 'src/login.php" target="' .
116 $frame_top . '">' .
c9062c05 117 _("Go to the login page") . "</a></B></FONT>".
9be8198d 118 '</TD></TR>'.
1f05436e 119 '</TABLE></td></tr></table></center></body></html>';
9be8198d 120}
121
fd2611e9 122function error_box($string, $color) {
b6c283c4 123 global $pageheader_sent;
124
125 $err = _("ERROR");
126
127 /* check if the page header has been sent; if not, send it! */
128 if(!isset($pageheader_sent) && !$pageheader_sent) {
129 /* include this just to be sure */
130 include_once( SM_PATH . 'functions/page_header.php' );
131 displayHtmlHeader('SquirrelMail: '.$err);
132 $pageheader_sent = TRUE;
133 echo "<body text=\"$color[8]\" bgcolor=\"$color[4]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\">\n\n";
134 }
135
36ec6865 136 echo ' <table width="100%" cellpadding="1" cellspacing="0" align="center"'.' border="0" bgcolor="'.$color[9].'">';
137 echo ' <tr><td>';
138 echo ' <table width="100%" cellpadding="0" cellspacing="0" align="center" border="0" bgcolor="'.$color[4].'">';
139 echo ' <tr><td ALIGN="center" bgcolor="'.$color[0].'">';
472e7acb 140 echo ' <font color="' . $color[2].'"><b>' . $err . ':</b></font>';
36ec6865 141 echo ' </td></tr>';
142 echo ' <tr><td>';
143 echo ' <table cellpadding="1" cellspacing="5" align="center" border="0">';
144 echo ' <tr>' . html_tag( 'td', $string."\n", 'left')
145 . '</tr>';
146 echo ' </table>';
bbc2c67d 147 echo ' </td></tr>';
36ec6865 148 echo ' </table></td></tr>';
149 echo ' </table>';
fd2611e9 150}
6a6ce0a3 151?>