X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Fnewmail%2Fnewmail_opt.php;h=8cef1c3d08f8369c5ad10242d51c8d17e7979ff7;hp=4fc646c5d7cbcafc93eb178482551423944723df;hb=ccb5faf0a2fbf6dc7927234a0dddeddc4217d230;hpb=202bcbcc2b67c7c153db1b09b608b62beeba0496;ds=sidebyside diff --git a/plugins/newmail/newmail_opt.php b/plugins/newmail/newmail_opt.php index 4fc646c5..8cef1c3d 100644 --- a/plugins/newmail/newmail_opt.php +++ b/plugins/newmail/newmail_opt.php @@ -5,7 +5,7 @@ * * Displays all options relating to new mail sounds * - * @copyright © 1999-2006 The SquirrelMail Project Team + * @copyright © 1999-2007 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package plugins @@ -18,13 +18,21 @@ */ require('../../include/init.php'); +/** + * Make sure plugin is activated! + */ +global $plugins; +if (!in_array('newmail', $plugins)) + exit; + /** Plugin functions (also loads plugin's config) */ include_once(SM_PATH . 'plugins/newmail/functions.php'); include_once(SM_PATH . 'functions/forms.php'); -displayPageHeader($color, 'None'); +displayPageHeader($color); +//FIXME: Remove all HTML from core - put this all into a template file echo html_tag( 'table', '', 'center', $color[0], 'width="95%" cellpadding="1" cellspacing="0" border="0"' ) . "\n" . html_tag( 'tr' ) . "\n" . html_tag( 'td', '', 'center' ) . @@ -33,15 +41,15 @@ echo html_tag( 'table', '', 'center', $color[0], 'width="95%" cellpadding="1" ce html_tag( 'tr' ) . "\n" . html_tag( 'td', '', 'left', $color[4] ) . "
\n"; -echo html_tag( 'p',_("The NewMail plugin will follow the Folder Preferences option "Enable Unread Message Notification"")) . "\n" . +echo html_tag( 'p',_("Based on the Folder Preferences option "Enable Unread Message Notification", you can be notified when new messages arrive in your account.")) . "\n" . html_tag( 'p', - sprintf(_("Selecting the %s option will enable the showing of a popup window when unseen mail is in your folders (requires JavaScript)."), '"'._("Show popup window on new mail").'"') + sprintf(_("Selecting the %s option will enable the showing of a popup window when unseen mail is in one of your folders (requires JavaScript)."), '"'._("Show popup window on new mail").'"') ) . "\n" . html_tag( 'p', 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."), '"'._("Count only messages that are RECENT").'"') ) . "\n" . html_tag( 'p', - 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."), '"'._("Change title on supported browsers").'"', '"'._("Count only messages that are RECENT").'"') + sprintf(_("Selecting the %s option will change the browser title bar to let you know when you have new mail (requires JavaScript and may only work in some browsers). This will always tell you if you have new mail, even if you have %s enabled."), '"'._("Change title on supported browsers").'"', '"'._("Count only messages that are RECENT").'"') ) . "\n"; if ($newmail_allowsound) { echo html_tag( 'p', @@ -72,33 +80,33 @@ echo html_tag('tr', // Option: media_recent echo html_tag( 'tr' ) . - html_tag( 'td', _("Count only messages that are RECENT").':', 'right', '', 'style="white-space: nowrap;"' ) . + html_tag( 'td', '', 'right', '', 'style="white-space: nowrap;"' ) . html_tag( 'td', '', 'left' ) . '' . "\n"; +echo 'name="media_recent" id="media_recent" />' . "\n"; // Option: media_changetitle echo html_tag( 'tr' ) . - html_tag( 'td', _("Change title on supported browsers").':', 'right', '', 'style="white-space: nowrap;"' ) . + html_tag( 'td', '', 'right', '', 'style="white-space: nowrap;"' ) . html_tag( 'td', '', 'left' ) . ' ('._("requires JavaScript to work").')' . "\n"; +echo 'name="media_changetitle" id="media_changetitle" /> ' . "\n"; // Option: media_popup echo html_tag( 'tr' ) . - html_tag( 'td', _("Show popup window on new mail").':', 'right', '', 'style="white-space: nowrap;"' ) . + html_tag( 'td', '', 'right', '', 'style="white-space: nowrap;"' ) . html_tag( 'td', '', 'left' ) . ' ('._("requires JavaScript to work").')' . "\n"; +echo 'name="media_popup" id="media_popup" /> ' . "\n"; echo html_tag( 'tr' ) . html_tag('td',_("Width of popup window:"),'right','', 'style="white-space: nowrap;"') @@ -117,13 +125,13 @@ echo html_tag( 'tr' ) if ($newmail_allowsound) { // Option: media_enable echo html_tag( 'tr' ) . - html_tag( 'td', _("Enable Media Playing").':', 'right', '', 'style="white-space: nowrap;"' ) . + html_tag( 'td', '', 'right', '', 'style="white-space: nowrap;"' ) . html_tag( 'td', '', 'left' ) . '' . "\n"; + echo 'name="media_enable" id="media_enable" />' . "\n"; // Option: media_sel echo html_tag( 'tr' ) . @@ -191,7 +199,7 @@ if ($newmail_allowsound) { // upload form echo html_tag('tr') . html_tag('td',_("Upload Media File:"),'right','','style="white-space: nowrap;"') - . html_tag('td','') + . html_tag('td','') . "\n"; // display currently uploaded file information echo html_tag('tr') @@ -223,4 +231,3 @@ echo html_tag( 'tr', "\n" . ) . "\n"; ?> -