X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Fnewmail%2Fnewmail_opt.php;h=5b194f3875e87d890f9d17a77ecb7c34b9f775af;hp=ca496075667608b9bfeaecdf50ce82fb6718571e;hb=5d55011bdf7fe06a1f88c5502f44a4f5a245b4cb;hpb=f7c05ce6f619f16f4c818f921c10e379451405ec diff --git a/plugins/newmail/newmail_opt.php b/plugins/newmail/newmail_opt.php index ca496075..5b194f38 100644 --- a/plugins/newmail/newmail_opt.php +++ b/plugins/newmail/newmail_opt.php @@ -5,27 +5,25 @@ * * 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 * @subpackage newmail */ -/** @ignore */ -define('SM_PATH','../../'); +/** + * Path for SquirrelMail required files. + * @ignore + */ +require('../../include/init.php'); -/* SquirrelMail required files. */ -include_once(SM_PATH . 'include/validate.php'); -/* sqm_baseuri function */ -include_once(SM_PATH . 'functions/display_messages.php'); /** Plugin functions (also loads plugin's config) */ include_once(SM_PATH . 'plugins/newmail/functions.php'); -displayPageHeader($color, 'None'); +include_once(SM_PATH . 'functions/forms.php'); -// plugin uses squirrelmail loading_pref hook. -// vars are already loaded in include/validate.php +displayPageHeader($color, 'None'); echo html_tag( 'table', '', 'center', $color[0], 'width="95%" cellpadding="1" cellspacing="0" border="0"' ) . "\n" . html_tag( 'tr' ) . "\n" . @@ -61,6 +59,17 @@ echo '' . echo '
' . "\n" . html_tag( 'table', '', '', '', 'width="100%" cellpadding="5" cellspacing="0" border="0"' ) . "\n"; +/* newmail_unseen_notify */ +$newmail_unseen_opts = array( 0 => _("Follow folder preferences"), + SMPREF_UNSEEN_INBOX => _("INBOX"), + SMPREF_UNSEEN_ALL => _("All folders"), + SMPREF_UNSEEN_SPECIAL => _("Special folders"), + SMPREF_UNSEEN_NORMAL => _("Regular folders")); +echo html_tag('tr', + html_tag('td',_("Check for new messages in:"),'right', '', 'style="white-space: nowrap;"'). + html_tag('td',addSelect('newmail_unseen_notify',$newmail_unseen_opts,$newmail_unseen_notify,true),'left') + ); + // Option: media_recent echo html_tag( 'tr' ) . html_tag( 'td', _("Count only messages that are RECENT").':', 'right', '', 'style="white-space: nowrap;"' ) . @@ -111,7 +120,7 @@ if ($newmail_allowsound) { html_tag( 'td', _("Enable Media Playing").':', 'right', '', 'style="white-space: nowrap;"' ) . html_tag( 'td', '', 'left' ) . '' . "\n"; @@ -213,4 +222,5 @@ echo html_tag( 'tr', "\n" . 'left' ) ) . "\n"; ?> -
\ No newline at end of file + +