0bcb4a7264e913d1c25c736dad85f3f96bf7729e
[squirrelmail.git] / plugins / newmail / testsound.php
1 <?php
2
3 /**
4 * testsound.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Displays all options relating to new mail sounds
10 *
11 * $Id$
12 */
13
14 chdir ("../");
15 require_once('../src/validate.php');
16 require_once('../functions/html.php');
17 require_once("../src/load_prefs.php");
18 if (!isset($sound)) {
19 $sound = "Click.wav";
20 }
21 $sound = str_replace('../plugins/newmail/', '', $sound);
22 $sound = str_replace('../', '', $sound);
23 $sound = str_replace("..\\", '', $sound);
24
25 displayHtmlHeader( _("Test Sound"), '', FALSE );
26
27 echo "<body bgcolor=\"$color[4]\" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>\n".
28 html_tag( 'table',
29 html_tag( 'tr',
30 html_tag( 'td',
31 "<embed src=\"$sound\" hidden=true autostart=true>".
32 '<br>'.
33 '<b>' . _("Loading the sound...") . '</b><br><br>'.
34 '<form>'.
35 '<input type="button" name="close" value=" ' .
36 _("Close") .
37 ' " onClick="window.close()">'.
38 '</form>' ,
39 'center' )
40 ) ,
41 'center' ) .
42 '</body></html>';
43
44 ?>