Getting ready for 1.2.0 release.
[squirrelmail.git] / plugins / newmail / newmail_opt.php
index 0f942fc867ae5ae991ded71c5c75eac09d860c95..5a2bd7148132238443a58065777dccecd88eff5a 100644 (file)
 <?php
+
    /**
     **  newmails_opt.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/page_header.php');
-   require_once('../functions/display_messages.php');
-   require_once('../functions/imap.php');
-   require_once('../functions/array.php');
-   require_once('../src/load_prefs.php');
-
-   displayPageHeader($color, "None");
-
-   $media_enable = getPref($data_dir,$username,"newmail_enable");
-   if ($media_enable == '') {
-     $media_enable = 'FALSE';
-   }
-
-  $media_popup = getPref($data_dir, $username,"newmail_popup");
-  $media_allbox = getPref($data_dir,$username,"newmail_allbox");
-  $media_recent = getPref($data_dir,$username,"newmail_recent");
-  $media_changetitle = getPref($data_dir,$username,"newmail_changetitle");
-
-   $media = getPref($data_dir,$username,"newmail_media");
-   if ($media == "") {
-     $media = "../plugins/newmail/sounds/Notify.wav";
-   }
+    chdir("..");
+    require_once('../src/validate.php');
+    require_once('../functions/page_header.php');
+    require_once('../functions/display_messages.php');
+    require_once('../functions/imap.php');
+    require_once('../functions/array.php');
+    require_once('../src/load_prefs.php');
+
+    displayPageHeader($color, 'None');
+
+    $media_enable = getPref($data_dir,$username, 'newmail_enable', 'FALSE' );
+    $media_popup = getPref($data_dir, $username,'newmail_popup');
+    $media_allbox = getPref($data_dir,$username,'newmail_allbox');
+    $media_recent = getPref($data_dir,$username,'newmail_recent');
+    $media_changetitle = getPref($data_dir,$username,'newmail_changetitle');
+    $media = getPref($data_dir,$username,'newmail_media', '../plugins/newmail/sounds/Notify.wav');
+
+    echo '<br>' .
+         "<table width=95% align=center border=0 cellpadding=2 cellspacing=0><tr><td bgcolor=\"$color[0]\">\n".
+         '<center><b>' . _("Options") . ' - ' . _("New Mail Notification") . '</b></center>'.
+         '</td></tr><tr><td>'.
+         '<p>'.
+_("Select <b>Enable Media Playing</b> to turn on playing a media file when unseen mail is in your folders. When enabled, you can specify the media file to play in the provided file box.") .
+         '</p><p>'.
+_("The <b>Check all boxes, not just INBOX</b> option will check ALL of your folders for unseen mail, not just the inbox for notification.").
+         '</p><p>'.
+_("Selecting the <b>Show popup</b> option will enable the showing of a popup window when unseen mail is in your folders (requires JavaScript).") .
+         '</p><p>'.
+_("Use the <b>Check RECENT</b> to only check for messages that are recent. Recent messages are those that have just recently showed up and have not been \"viewed\" or checked yet.  This can prevent being continuously annoyed by sounds or popups for unseen mail.").
+         '</p><p>'.
+_("Selecting the <b>Change title</b> option will change the title in some browsers to let you know when you have new mail (requires JavaScript, and only works in IE but you won't see errors with other browsers).  This will always tell you if you have new mail, even if you have <b>Check RECENT</b> enabled.").
+         '</p><p>'.
+_("Select from the list of <b>server files</b> the media file to play when new mail arrives.  Selecting <b>local media</b> will play the file specified in the <b>local media file</b> box to play from the local computer.  If no file is specified, the system will use a default from the server.") .
+         '</p>'.
+         '<form action="../../src/options.php" method=post>'.
+         '<table width=100% cellpadding=0 cellspacing=2 border=0>'.
+            '<tr>'.
+                '<td align=right nowrap>&nbsp</td>'.
+                '<td><input type=checkbox ';
+    if ($media_enable == 'on') {
+              echo 'checked ';
+    }
+    echo 'name=media_enable><b> ' . _("Enable Media Playing") . '</b></td>'.
+            '</tr>'.
+            '<tr>'.
+                '<td align=right nowrap>&nbsp</td>'.
+                '<td><input type=checkbox ';
+    if ($media_allbox == 'on') {
+              echo 'checked ';
+    }
+    echo 'name=media_allbox><b> ' . _("Check all boxes, not just INBOX") . '</b></td>'.
+            '</tr>'.
+            '<tr>'.
+                '<td align=right nowrap>&nbsp</td>'.
+                '<td><input type=checkbox ';
+    if ($media_recent == 'on') {
+              echo 'checked ';
+    }
+    echo 'name=media_recent><b> ' . _("Count only messages that are RECENT") . '</b></td>'.
+            '</tr>'.
+            '<tr>'.
+                '<td align=right nowrap>&nbsp</td>' .
+                '<td><input type=checkbox ';
+    if ($media_changetitle == 'on') {
+              echo 'checked ';
+    }
+    echo 'name=media_changetitle><b> ' . _("Change title on supported browsers.") . '</b> &nbsp; (' . _("requires JavaScript to work") . ')</td>'.
+            '</tr>'.
+            '<tr>'.
+                '<td align=right nowrap>&nbsp</td>'.
+                '<td><input type=checkbox ';
+    if($media_popup == 'on') {
+              echo 'checked ';
+    }
+    echo 'name=media_popup><b> ' . _("Show popup window on new mail") . '</b> &nbsp; (' . _("requires JavaScript to work") . ')</td>'.
+            '</tr>'.
+            '<tr>'.
+                '<td align=right nowrap>' . _("Select server file:") . '</td>'.
+                '<td><SELECT NAME=media_sel>'.
+                    '<OPTION VALUE="(local media)">' . _("(local media)") . '</option>';
+
+    // Iterate sound files for options
+
+    $d = dir('../plugins/newmail/sounds');
+    while($entry=$d->read()) {
+        $fname = $d->path . "/" . $entry;
+        if ($entry != '..' && $entry != '.') {
+            echo "<OPTION ";
+            if ($fname == $media) {
+                echo "SELECTED ";
+            }
+            echo "VALUE=\"" . $fname . "\">" . $entry . "</option>\n";
+        }
+    }
+    $d->close();
+    echo '</SELECT>'.
+               '<input type="submit" value=" ' . _("Try") . ' " name="test" onClick="'.
+                    "window.open('testsound.php?sound='+media_sel.options[media_sel.selectedIndex].value, 'TestSound',".
+                       "'width=150,height=30,scrollbars=no');".
+                    'return false;'.
+               '">'.
+            '</td>'.
+         '</tr>'.
+         '<tr>'.
+            '<td align=right nowrap>' . _("Local Media File:") .
+            '</td><td>'.
+               '<input type=file size=40 name=media_file>'.
+            '</td>'.
+         '</tr>'.
+         '<tr>'.
+            '<td align=right nowrap>' . _("Current File:") .
+            '</td><td>'.
+           "<input type=hidden value=\"$media;\" name=media_default>$media;</td>".
+         '</tr>'.
+         '<tr>'.
+            '<td>&nbsp;</td>'.
+            '<td>'.
+               '<INPUT TYPE=HIDDEN NAME=optmode VALUE=submit>'. 
+               '<input type="submit" value="' . _("Submit") . '" name="submit_newmail">'.
+            '</td>'.
+         '</tr>'.
+      '</table>'.
+   '</form>'.
+   '</td></tr></table>'.
+'</body></html>';
 
 ?>
-   <br>
-   <table width=95% align=center border=0 cellpadding=2 cellspacing=0><tr><td bgcolor="<?php echo $color[0] ?>">
-      <center><b><?php echo _("Options") ?> - New Mail Notification v1.2</b></center>
-   </td></tr><tr><td>
-<p>
-Select <b>Enable Media Playing</b> to turn on playing a media file when
-unseen mail is in your folders. When enabled, you can specify the media file to play in the provided
-file box.<p>
-
-The <b>Check all boxes, not just INBOX</b> option will check ALL of your
-folders for unseen mail, not just the inbox for notification.<p>
-
-Selecting the <b>Show popup</b> option will enable the showing of a popup
-window when unseen mail is in your folders (requires JavaScript).<p>
-
-Use the <b>Check RECENT</b> to only check for messages that are recent.  
-Recent messages are those that have just recently showed up and have not
-been "viewed" or checked yet.  This can prevent being continuously annoyed
-by sounds or popups for unseen mail.<p>
-
-Selecting the <b>Change title</b> option will change the title in some
-browsers to let you know when you have new mail (requires JavaScript, and
-only works in IE but you won't see errors with other browsers).  
-This will always tell you if you have new mail, even if you have 
-<b>Check RECENT</b> enabled.<p>
-
-Select from the list of <b>server files</b> the media file to play when
-new mail arrives.  Selecting <b>local media</b> will play the file
-specified in the <b>local media file</b> box to play from the local
-computer.  If no file is specified, the system will use a default from the
-server.
-
-   <form action="../../src/options.php" method=post>
-      <table width=100% cellpadding=0 cellspacing=2 border=0>
-        <tr>
-            <td align=right nowrap>&nbsp
-            </td><td>
-               <input type=checkbox <?php
-                       if($media_enable == "on") {
-                         echo "checked";
-                       }?>
-               name=media_enable><b> Enable Media Playing</b> 
-            </td>
-         </tr>
-        <tr>
-            <td align=right nowrap>&nbsp
-            </td><td>
-               <input type=checkbox <?php
-                       if($media_allbox == "on") {
-                         echo "checked";
-                       }?>
-               name=media_allbox><b> Check all boxes, not just INBOX</b>
-            </td>
-         </tr>
-        <tr>
-            <td align=right nowrap>&nbsp
-            </td><td>
-               <input type=checkbox <?php
-                       if($media_recent == "on") {
-                         echo "checked";
-                       }?>
-               name=media_recent><b> Count only messages that are RECENT</b>
-            </td>
-         </tr>
-        <tr>
-            <td align=right nowrap>&nbsp
-            </td><td>
-               <input type=checkbox <?php
-                       if($media_changetitle == "on") {
-                         echo "checked";
-                       }?>
-               name=media_changetitle><b> Change title on supported browsers.</b>
-               &nbsp;(requires IE and JavaScript to work)
-            </td>
-         </tr>
-        <tr>
-            <td align=right nowrap>&nbsp
-            </td><td>
-               <input type=checkbox <?php
-                       if($media_popup == "on") {
-                         echo "checked";
-                       }?>
-               name=media_popup><b> Show popup window on new mail</b>
-               &nbsp;(requires JavaScript to work) 
-            </td>
-         </tr>
-        <tr>
-            <td align=right nowrap>Select server file:
-            </td><td>
-               <SELECT NAME=media_sel><?php
-
-               echo "<OPTION VALUE=\"(local media)\">(local media)";
-
-               // Iterate sound files for options
-
-               $d = dir("../plugins/newmail/sounds");
-               while($entry=$d->read()) {
-                  $fname = $d->path . "/" . $entry;
-                  if ($entry != ".." && $entry != ".") { 
-                       echo "<OPTION ";
-                       if ($fname == $media) {
-                           echo "SELECTED ";
-                       }                       
-                       echo "VALUE=\"" . $fname . "\">" . $entry . "\n";
-                  }
-               }
-               $d->close();
-
-               ?>
-              </SELECT> 
-               <input type="submit" value=" Try " name="test" onClick="
-                    window.open('testsound.php?sound='+media_sel.options[media_sel.selectedIndex].value, 'TestSound',
-                       'width=150,height=30,scrollbars=no');
-                    return false;
-               ">
-            </td>
-         </tr>
-         <tr>
-            <td align=right nowrap>Local Media File :
-            </td><td>
-               <input type=file size=40 name=media_file>
-            </td>
-         </tr>
-         <tr>
-            <td align=right nowrap>Current File:
-            </td><td>
-              <input type=hidden value=\"" <?php echo $media; ?>
-                       name=media_default>
-              <?php echo $media; ?> 
-            </td>
-         </tr>
-         <tr>
-            <td>&nbsp;
-            </td><td>
-               <input type="submit" value="Submit" name="submit_newmail">
-            </td>
-         </tr>
-      </table>   
-   </form>
-   </td></tr></table>
-</body></html>