File: testsound.php

package info (click to toggle)
squirrelmail 1%3A1.2.6-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,300 kB
  • ctags: 4,949
  • sloc: php: 21,297; perl: 2,538; sh: 350; ansic: 122; makefile: 69
file content (39 lines) | stat: -rw-r--r-- 1,121 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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: testsound.php,v 1.4 2001/12/23 07:42:39 thomppj Exp $
 */

   chdir ("../");
   require_once('../src/validate.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".
        '<CENTER>'.
        "<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>'.
        '</BODY></HTML>';

?>