1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * testsound.php
- *
- * Copyright (c) 1999-2002 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * Displays all options relating to new mail sounds
- *
- * $Id$
- */
- chdir ("../");
- require_once('../src/validate.php');
- require_once('../functions/html.php');
- require_once("../src/load_prefs.php");
- if (!isset($sound)) {
- $sound = "Click.wav";
- }
- $sound = str_replace('../plugins/newmail/', '', $sound);
- $sound = str_replace('../', '', $sound);
- $sound = str_replace("..\\", '', $sound);
- displayHtmlHeader( _("Test Sound"), '', FALSE );
- echo "<body bgcolor=\"$color[4]\" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>\n".
- html_tag( 'table',
- html_tag( 'tr',
- html_tag( 'td',
- "<embed src=\"$sound\" hidden=true autostart=true>".
- '<br>'.
- '<b>' . _("Loading the sound...") . '</b><br><br>'.
- '<form>'.
- '<input type="button" name="close" value=" ' .
- _("Close") .
- ' " onClick="window.close()">'.
- '</form>' ,
- 'center' )
- ) ,
- 'center' ) .
- '</body></html>';
- ?>
|