Source for file newmail_opt.php

Documentation is available at newmail_opt.php

  1. <?php
  2.  
  3. /**
  4.  * newmails_opt.php
  5.  *
  6.  * Copyright (c) 1999-2006 The SquirrelMail Project Team
  7.  * Licensed under the GNU GPL. For full terms see the file COPYING.
  8.  *
  9.  * Displays all options relating to new mail sounds
  10.  *
  11.  * $Id: newmail_opt.php,v 1.17.2.10 2006/02/03 22:27:52 jervfors Exp $
  12.  * @package plugins
  13.  * @subpackage newmail
  14.  */
  15.  
  16. /** @ignore */
  17. define('SM_PATH','../../');
  18.  
  19. /* SquirrelMail required files. */
  20. require_once(SM_PATH 'include/validate.php');
  21. require_once(SM_PATH 'functions/page_header.php');
  22. require_once(SM_PATH 'functions/display_messages.php');
  23. require_once(SM_PATH 'functions/imap.php');
  24. require_once(SM_PATH 'include/load_prefs.php');
  25.  
  26. displayPageHeader($color'None');
  27.  
  28. $media_enable getPref($data_dir,$username'newmail_enable''FALSE' );
  29. $media_popup getPref($data_dir$username,'newmail_popup');
  30. $media_allbox getPref($data_dir,$username,'newmail_allbox');
  31. $media_recent getPref($data_dir,$username,'newmail_recent');
  32. $media_changetitle getPref($data_dir,$username,'newmail_changetitle');
  33. $media getPref($data_dir,$username,'newmail_media''(none)');
  34.  
  35. // Set $allowsound to false if you don't want sound files available
  36. $allowsound "true";
  37.  
  38. echo html_tag'table''''center'$color[0]'width="95%" cellpadding="1" cellspacing="0" border="0"' "\n" .
  39.         html_tag'tr' "\n" .
  40.             html_tag'td''''center' .
  41.                 '<b>' _("Options"' - ' _("New Mail Notification""</b><br />\n" .
  42.                 html_tag'table''''''''width="100%" cellpadding="5" cellspacing="0" border="0"' "\n" .
  43.                     html_tag'tr' "\n" .
  44.                         html_tag'td''''left'$color[4"<br />\n";
  45.  
  46. echo html_tag'p',
  47.         sprintf(_("The %s option will check ALL of your folders for unseen mail, not just the inbox for notification.")'&quot;'._("Check all boxes, not just INBOX").'&quot;')
  48.      "\n" .
  49.      html_tag'p',
  50.         sprintf(_("Selecting the %s option will enable the showing of a popup window when unseen mail is in your folders (requires JavaScript).")'&quot;'._("Show popup window on new mail").'&quot;')
  51.      "\n" .
  52.      html_tag'p',
  53.         sprintf(_("Use the %s option 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.")'&quot;'._("Count only messages that are RECENT").'&quot;')
  54.      "\n" .
  55.      html_tag'p',
  56.         sprintf(_("Selecting the %s 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 %s enabled.")'&quot;'._("Change title on supported browsers").'&quot;''&quot;'._("Count only messages that are RECENT").'&quot;')
  57.      "\n";
  58. if ($allowsound == "true"{
  59.     echo html_tag'p',
  60.             sprintf(_("Select %s 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.")'&quot;'._("Enable Media Playing").'&quot;')
  61.          "\n" .
  62.          html_tag'p',
  63.             sprintf(_("Select from the list of %s the media file to play when new mail arrives. If no file is specified, %s, no sound will be used.")'&quot;'._("Select server file").'&quot;''&quot;'._("(none)").'&quot;')
  64.          "\n";
  65. }
  66.  
  67. echo '</td></tr>' .
  68.         html_tag'tr' .
  69.             html_tag'td''''center'$color[4"\n" '<hr style="width: 25%; height: 1px;" />' "\n";
  70.  
  71. echo '<form action="'.sqm_baseuri().'src/options.php" method="post">' "\n" .
  72.         html_tag'table''''''''width="100%" cellpadding="5" cellspacing="0" border="0"' "\n";
  73.  
  74. // Option: media_allbox
  75. echo html_tag'tr' .
  76.         html_tag'td'_("Check all boxes, not just INBOX").':''right''''nowrap' .
  77.             html_tag'td''''left' .
  78.                 '<input type="checkbox" ';
  79. if ($media_allbox == 'on'{
  80.     echo 'checked="checked" ';
  81. }
  82. echo 'name="media_allbox" /></td></tr>' "\n";
  83.  
  84. // Option: media_recent
  85. echo html_tag'tr' .
  86.         html_tag'td'_("Count only messages that are RECENT").':''right''''nowrap' .
  87.             html_tag'td''''left' .
  88.                 '<input type="checkbox" ';
  89. if ($media_recent == 'on'{
  90.     echo 'checked="checked" ';
  91. }
  92. echo 'name="media_recent" /></td></tr>' "\n";
  93.  
  94. // Option: media_changetitle
  95. echo html_tag'tr' .
  96.         html_tag'td'_("Change title on supported browsers").':''right''''nowrap' .
  97.             html_tag'td''''left' .
  98.                 '<input type="checkbox" ';
  99. if ($media_changetitle == 'on'{
  100.     echo 'checked="checked" ';
  101. }
  102. echo 'name="media_changetitle" />&nbsp;('._("requires JavaScript to work").')</td></tr>' "\n";
  103.  
  104. // Option: media_popup
  105. echo html_tag'tr' .
  106.         html_tag'td'_("Show popup window on new mail").':''right''''nowrap' .
  107.             html_tag'td''''left' .
  108.                 '<input type="checkbox" ';
  109. if($media_popup == 'on'{
  110.     echo 'checked="checked" ';
  111. }
  112. echo 'name="media_popup" />&nbsp;('._("requires JavaScript to work").')</td></tr>' "\n";
  113.  
  114. if ($allowsound == "true"{
  115. // Option: media_enable
  116.         echo html_tag'tr' .
  117.             html_tag'td'_("Enable Media Playing").':''right''''nowrap' .
  118.                 html_tag'td''''left' .
  119.                     '<input type="checkbox" ';
  120.     if ($media_enable == 'on'{
  121.         echo 'checked="checked" ';
  122.     }
  123.     echo 'name="media_enable" /></td></tr>' "\n";
  124.  
  125. // Option: media_sel
  126.         echo html_tag'tr' .
  127.         html_tag'td'_("Select server file").':''right''''nowrap' .
  128.             html_tag'td''''left' .
  129.                 '<select name="media_sel">' "\n" .
  130.                     '<option value="(none)"';
  131.     if $media == '(none)'{
  132.         echo 'selected="selected" ';
  133.     }
  134.     echo '>' _("(none)"'</option>' .  "\n";
  135.     // Iterate sound files for options
  136.         $d dir(SM_PATH 'plugins/newmail/sounds');
  137.     while($entry=$d->read()) {
  138.         $fname get_location ('/sounds/' $entry;
  139.         if ($entry != '..' && $entry != '.' && $entry != 'CVS' && $entry != 'index.php'{
  140.             echo '<option ';
  141.             if ($fname == $media{
  142.                 echo 'selected="selected" ';
  143.             }
  144.             echo 'value="' htmlspecialchars($fname'">' .
  145.                 htmlspecialchars($entry"</option>\n";
  146.         }
  147.     }
  148.     $d->close();
  149.     $media_output ($media == '(none)'_("(none)"substr($mediastrrpos($media'/')+1);
  150.     echo '</select>'.
  151.         '<input type="submit" value="' _("Try"'" name="test" onClick="' .
  152.             "window.open('testsound.php?sound='+media_sel.options[media_sel.selectedIndex].value, 'TestSound'," .
  153.             "'width=150,height=30,scrollbars=no');" .
  154.             'return false;' .
  155.             '" /></td></tr>' .
  156.             html_tag'tr'"\n" .
  157.                 html_tag'td'_("Current File:")'right''''nowrap' .
  158.                     html_tag'td''<input type="hidden" value="' .
  159.                         htmlspecialchars($media'" name="media_default">' .
  160.                         htmlspecialchars($media_output'''left' )
  161.              "\n";
  162. }
  163. echo html_tag'tr'"\n" .
  164.     html_tag'td''&nbsp;' .
  165.         html_tag'td',
  166.             '<input type="hidden" name="optmode" value="submit" />' .
  167.             '<input type="hidden" name="optpage" value="newmail" />' .
  168.             '<input type="submit" value="' _("Submit"'" name="submit_newmail" />',
  169.         'left' )
  170.      "\n";
  171. ?>
  172. </table></form></td></tr></table></td></tr></table></body></html>

Documentation generated on Sat, 07 Oct 2006 16:32:40 +0300 by phpDocumentor 1.3.0RC6