Getting ready for 1.4.0 RC1
[squirrelmail.git] / plugins / newmail / testsound.php
1 <?php
2
3 /**
4 * testsound.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 * $Id$
10 */
11
12 define('SM_PATH','../../');
13
14 /* SquirrelMail required files. */
15 require_once(SM_PATH . 'include/validate.php');
16 require_once(SM_PATH . 'functions/html.php');
17
18 if (!isset($_GET['sound'])) {
19 $sound = 'Click.wav';
20 } else {
21 $sound = $_GET['sound'];
22 }
23
24 $sound = str_replace('../plugins/newmail/', '', $sound);
25 $sound = str_replace('../', '', $sound);
26 $sound = str_replace("..\\", '', $sound);
27
28 displayHtmlHeader( _("Test Sound"), '', FALSE );
29
30 echo "<body bgcolor=\"$color[4]\" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>\n".
31 html_tag( 'table',
32 html_tag( 'tr',
33 html_tag( 'td',
34 "<embed src=\"$sound\" hidden=true autostart=true>".
35 '<br>'.
36 '<b>' . _("Loading the sound...") . '</b><br><br>'.
37 '<form>'.
38 '<input type="button" name="close" value=" ' .
39 _("Close") .
40 ' " onClick="window.close()">'.
41 '</form>' ,
42 'center' )
43 ) ,
44 'center' ) .
45 '</body></html>';
46
47 ?>