Initial groundwork to use phpdocumentor.
[squirrelmail.git] / plugins / newmail / testsound.php
index e8d1dcb4d479929a886bdcfe89765e20f0e75fc8..07f8a09799cdb410f5d7637480b92c84bb887d83 100644 (file)
@@ -3,37 +3,50 @@
 /**
  * testsound.php
  *
- * Copyright (c) 1999-2002 The SquirrelMail Project Team
+ * Copyright (c) 1999-2003 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$
+ * @package plugins
+ * @subpackage newmail
  */
 
-   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);
+/** @ignore */
+define('SM_PATH','../../');
+
+/* SquirrelMail required files. */
+require_once(SM_PATH . 'include/validate.php');
+require_once(SM_PATH . 'functions/global.php');
+require_once(SM_PATH . 'functions/html.php');
+
+displayHtmlHeader( _("Test Sound"), '', FALSE );
 
-   displayHtmlHeader( _("Test Sound"), '', FALSE );
+echo '<body bgcolor="'.$color[4].'" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>'."\n";
 
-   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>';
+if ( ! sqgetGlobalVar('sound', $sound, SQ_GET) ) {
+    $sound = 'Click.wav';
+} elseif ( $sound == '(none)' ) {
+    echo '<center><form><br /><br />'.
+         '<b>' . _("No sound specified") . '</b><br /><br />'.
+         '<input type="button" name="close" value="' . _("Close") . '" onClick="window.close()">'.
+         '</form></center>'.
+         '</body></html>';
+    return;
+}
 
+echo html_tag( 'table',
+         html_tag( 'tr',
+             html_tag( 'td',
+                    "<embed src=\"$sound\" hidden=true autostart=true>".
+                    '<br>'.
+                    '<b>' . _("Loading the sound...") . '</b><br>'.
+                    '<form>'.
+                    '<input type="button" name="close" value="  ' .
+                    _("Close") .
+                    '  " onClick="window.close()">'.
+                    '</form>' ,
+                'center' )
+            ) ,
+        'center' ) .
+        '</body></html>';
 ?>