Plugin may be invisible when JS is not detected
[squirrelmail.git] / plugins / newmail / testsound.php
index 97b52db154df3b8b187d6a72f4dcf774b60f6fae..fa1192dd7268b957f6865c91ab7824ecdcc9fa2b 100644 (file)
@@ -1,25 +1,50 @@
 <?php
-   chdir ('../');
-   require_once ('../src/validate.php');
-   require_once ('../src/load_prefs.php');
-   if (!isset($sound)) {
+
+/**
+ * testsound.php
+ *
+ * Copyright (c) 1999-2005 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * $Id$
+ * @package plugins
+ * @subpackage newmail
+ */
+
+/** @ignore */
+define('SM_PATH','../../');
+
+/* SquirrelMail required files. */
+require_once(SM_PATH . 'include/validate.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';
-   }
-   $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>
+} 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',
+                    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