Fix a bunch of plugins to cope with moved load_prefs/validate files.
[squirrelmail.git] / plugins / newmail / testsound.php
CommitLineData
4508b1b6 1<?php
2d4c15d6 2
15e6162e 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 */
2d4c15d6 13
4acc7aab 14 chdir('../');
d0dbdb14 15 define('SM_PATH','../');
16
17 /* SquirrelMail required files. */
18 require_once(SM_PATH . 'include/validate.php');
19 require_once(SM_PATH . 'functions/html.php');
d0dbdb14 20
4508b1b6 21 if (!isset($sound)) {
2d4c15d6 22 $sound = "Click.wav";
4508b1b6 23 }
a9aa7ab7 24 $sound = str_replace('../plugins/newmail/', '', $sound);
25 $sound = str_replace('../', '', $sound);
26 $sound = str_replace("..\\", '', $sound);
27
28 displayHtmlHeader( _("Test Sound"), '', FALSE );
29
4cf43843 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>';
a9aa7ab7 46
15e6162e 47?>