A start for a new change_password master plugin. This is not finished
[squirrelmail.git] / plugins / newmail / newmail.php
CommitLineData
4508b1b6 1<?php
2d4c15d6 2
8d6a115b 3/**
4 * newmail.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
8d6a115b 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Displays all options relating to new mail sounds
10 *
ea5f4b8e 11 * $Id$
12 * @package plugins
13 * @subpackage newmail
8d6a115b 14 */
d0dbdb14 15
ea5f4b8e 16/** @ignore */
8d6a115b 17define('SM_PATH','../../');
18
19/* SquirrelMail required files. */
20require_once(SM_PATH . 'include/validate.php');
21require_once(SM_PATH . 'include/load_prefs.php');
22require_once(SM_PATH . 'functions/page_header.php');
a9aa7ab7 23
7c15c446 24sqGetGlobalVar('numnew', $numnew, SQ_GET);
25
a9aa7ab7 26 displayHtmlHeader( _("New Mail"), '', FALSE );
27
4cf43843 28 echo "<body bgcolor=\"$color[4]\" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>\n".
29 '<center>'. "\n" .
30 html_tag( 'table', "\n" .
31 html_tag( 'tr', "\n" .
32 html_tag( 'td', '<b>' . _("SquirrelMail Notice:") . '</b>', 'center', $color[0] )
33 ) .
34 html_tag( 'tr', "\n" .
35 html_tag( 'td',
7c15c446 36 '<br><big><font color="' . $color[2] . '">' . _("You have").' '.
37 sprintf( ( $numnew == 1 ?
38 _("%s new message") :
39 _("%s new messages") ), $numnew ) .
40 '</font><br></big><br>' . "\n" .
4cf43843 41 '<form name="nm">' . "\n".
7c15c446 42 '<input type=button name=bt value="' . _("Close Window") .
43 '" onClick="javascript:window.close();">'."\n".
4cf43843 44 '</form>',
45 'center' )
46 ) ,
47 '', '', 'width="100%" cellpadding="2" cellspacing="2" border="0"' ) .
48 '</center>' .
2d4c15d6 49 "<script language=javascript>\n".
50 "<!--\n".
51 "document.nm.bt.focus();\n".
52 "-->\n".
53 "</script>\n".
4cf43843 54 "</body></html>\n";
a9aa7ab7 55
15e6162e 56?>