a6d669918523186bf45263bbc1c2fa1403b85fd3
[squirrelmail.git] / plugins / newmail / newmail.php
1 <?php
2
3 /**
4 * newmail.php - popup page
5 *
6 * Displays all options relating to new mail sounds
7 *
8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package plugins
12 * @subpackage newmail
13 */
14
15 /** @ignore */
16 define('SM_PATH','../../');
17
18 /* SquirrelMail required files. */
19 require_once(SM_PATH . 'include/validate.php');
20
21 sqGetGlobalVar('numnew', $numnew, SQ_GET);
22 $numnew = (int)$numnew;
23
24 displayHtmlHeader( _("New Mail"), '', FALSE );
25
26 echo '<body bgcolor="'.$color[4].'" topmargin="0" leftmargin="0" rightmargin="0" marginwidth="0" marginheight="0">'."\n".
27 '<div style="text-align: center;">'. "\n" .
28 html_tag( 'table', "\n" .
29 html_tag( 'tr', "\n" .
30 html_tag( 'td', '<b>' . _("SquirrelMail Notice:") . '</b>', 'center', $color[0] )
31 ) .
32 html_tag( 'tr', "\n" .
33 html_tag( 'td',
34 '<br /><big><font color="' . $color[2] . '">'.
35 sprintf(ngettext("You have %s new message","You have %s new messages",$numnew), $numnew ) .
36 '</font><br /></big><br />' . "\n" .
37 '<form name="nm">' . "\n".
38 '<input type="button" name="bt" value="' . _("Close Window") .
39 '" onclick="javascript:window.close();" />'."\n".
40 '</form>',
41 'center' )
42 ) ,
43 '', '', 'width="100%" cellpadding="2" cellspacing="2" border="0"' ) .
44 '</div>' .
45 "<script language=javascript>\n".
46 "<!--\n".
47 "document.nm.bt.focus();\n".
48 "-->\n".
49 "</script>\n".
50 "</body></html>\n";
51 ?>