Use compatibility_info() function if at all possible instead of compatibility_version()
[squirrelmail.git] / plugins / newmail / testsound.php
index 583dd8f192b58b46995879bac7423f2af4f11dd5..d8d5ac7ef0c49cf43984e4813e757dfea7e79bc6 100644 (file)
@@ -1,37 +1,49 @@
 <?php
 
-   /**
-    **  testsound.php
-    **  Copyright (c) 1999-2001 The Squirrelmail Development Team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.        
-    **
-    **  Displays all options relating to new mail sounds
-    **
-    **  $Id$
-    **    
-    **/
+/**
+ * testsound.php
+ *
+ * @copyright &copy; 1999-2007 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $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);
-?>
-<HTML>
-<TITLE>Test Sound</TITLE>
-<BODY bgcolor=<?php echo $color[4] ?> topmargin=0 leftmargin=0
-rightmargin=0 marginwidth=0 marginheight=0>
-<CENTER>
-<embed src="<?php echo $sound ?>" hidden=true autostart=true>
-<br>
-<font face="Veranda, Arial Helvetica, sans-serif" size="2" </font>
-<b>Loading the sound...</b><br><br>
-<form>
-<input type="button" name="close" value="  Close  " onClick="window.close()">
-</form>
-</CENTER>
-</BODY></HTML>
+/**
+ * Path for SquirrelMail required files.
+ * @ignore
+ */
+require('../../include/init.php');
+
+displayHtmlHeader( _("Test Sound"), '', FALSE );
+
+echo '<body bgcolor="'.$color[4].'" topmargin="0" leftmargin="0" rightmargin="0" marginwidth="0" marginheight="0">'."\n";
+
+if ( ! sqgetGlobalVar('sound', $sound, SQ_GET) ) {
+    $sound = 'Click.wav';
+} elseif ( $sound == '(none)' ) {
+    echo '<div style="text-align: center;"><form><br /><br />'.
+         '<b>' . _("No sound specified") . '</b><br /><br />'.
+         '<input type="button" name="close" value="' . _("Close") . '" onclick="window.close()" />'.
+         '</form></div>'.
+         '</body></html>';
+    return;
+}
+
+echo html_tag( 'table',
+         html_tag( 'tr',
+             html_tag( 'td',
+                    newmail_create_media_tags($sound)."\n".
+                    '<br />'.
+                    '<b>' . _("Loading the sound...") . '</b><br />'.
+                    '<form>'.
+                    '<input type="button" name="close" value="  ' .
+                    _("Close") .
+                    '  " onclick="window.close()" />'.
+                    '</form>' ,
+                'center' )
+            ) ,
+        'center' ) .
+        '</body></html>';
+?>
\ No newline at end of file