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