Source for file constants.php
Documentation is available at constants.php
* Loads constants used by the rest of the SquirrelMail source.
* Before 1.5.2 script was stored in functions/constants.php
* @copyright 1999-2020 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: constants.php 14845 2020-01-07 08:09:34Z pdontthink $
* SquirrelMail version number -- DO NOT CHANGE
define('SM_VERSION', '1.5.2 [SVN]');
* Year interval for copyright notices in the interface
define('SM_COPYRIGHT', '1999-2020');
/**************************************************************/
/* Set values for constants used by SquirrelMail preferences. */
/**************************************************************/
* Define constants for SquirrelMail debug modes.
* Note that these are binary so that modes can be
* mixed and matched, and they are also ordered from
* minor to severe. When adding new modes, please
* order them in a sensical way (MODERATE is the 10th
* bit; ADVANCED is the 20th bit).
define('SM_DEBUG_MODE_OFF', 0); // complete error suppression
define('SM_DEBUG_MODE_SIMPLE', 1); // PHP E_ERROR
define('SM_DEBUG_MODE_MODERATE', 512); // PHP E_ALL
define('SM_DEBUG_MODE_ADVANCED', 524288); // PHP E_ALL plus log errors intentionally suppressed
define('SM_DEBUG_MODE_STRICT', 536870912); // PHP E_STRICT
* Define basic, general purpose preference constants.
define('SMPREF_NONE', 'none');
* Define constants for location based preferences.
define('SMPREF_LOC_TOP', 'top');
define('SMPREF_LOC_BETWEEN', 'between');
define('SMPREF_LOC_BOTTOM', 'bottom');
define('SMPREF_LOC_LEFT', '');
define('SMPREF_LOC_RIGHT', 'right');
* Define preferences for folder settings.
define('SMPREF_UNSEEN_NONE', 1);
define('SMPREF_UNSEEN_INBOX', 2);
define('SMPREF_UNSEEN_ALL', 3);
define('SMPREF_UNSEEN_SPECIAL', 4); // Only special folders (since 1.2.5)
define('SMPREF_UNSEEN_NORMAL', 5); // Only normal folders (since 1.2.5)
define('SMPREF_UNSEEN_ONLY', 1);
define('SMPREF_UNSEEN_TOTAL', 2);
define('SMPREF_MAILBOX_SELECT_LONG', 0);
define('SMPREF_MAILBOX_SELECT_INDENTED', 1);
define('SMPREF_MAILBOX_SELECT_DELIMITED', 2);
* Define constants for time/date display preferences.
define('SMPREF_TIME_24HR', 1);
define('SMPREF_TIME_12HR', 2);
* Define constants for javascript preferences.
define('SMPREF_JS_AUTODETECT', 2);
* default value for page_selector_max
* The number of pages to cache msg headers
define('SQM_MAX_PAGES_IN_CACHE',5);
* The number of mailboxes to cache msg headers
define('SQM_MAX_MBX_IN_CACHE',3);
* Sort constants used for sorting of messages
define('SQSORT_INT_DATE_ASC',13);
define('SQSORT_INT_DATE_DESC',14);
* Special sort constant thread which is added to above sort mode.
* By doing a bitwise check ($sort & SQSORT_THREAD) we know if the mailbox
* Mailbox preference array keys
define('MBX_PREF_AUTO_EXPUNGE',2);
define('MBX_PREF_INTERNALDATE',3);
// define('MBX_PREF_FUTURE',unique integer key);
* Email address array keys
define('SQM_ADDR_PERSONAL', 0);
define('SQM_ADDR_MAILBOX', 2);
* Supported columns to show in a messages list
* The MBX_PREF_COLUMNS contains an ordered array with these columns
define('SQM_COL_ATTACHMENT', 7);
define('SQM_COL_INT_DATE', 8);
* Address book field list
* @since 1.4.16 and 1.5.2
define('SM_ABOOK_FIELD_NICKNAME', 0);
define('SM_ABOOK_FIELD_FIRSTNAME', 1);
define('SM_ABOOK_FIELD_LASTNAME', 2);
define('SM_ABOOK_FIELD_EMAIL', 3);
define('SM_ABOOK_FIELD_LABEL', 4);
* Generic variable type constants
define('SQ_TYPE_BIGINT', 'bigint');
define('SQ_TYPE_STRING', 'string');
define('SQ_TYPE_BOOL', 'bool');
define('SQ_TYPE_ARRAY', 'array');
* Template engines supported
define('SQ_PHP_TEMPLATE', 'PHP_');
define('SQ_SMARTY_TEMPLATE', 'Smarty_');
* Used by plugins to indicate an incompatibility with a SM version
define('SQ_INCOMPATIBLE', 'INCOMPATIBLE');
* Define constants used in the options code
// Define constants for the various option types
define('SMOPT_TYPE_STRING', 0);
define('SMOPT_TYPE_STRLIST', 1);
define('SMOPT_TYPE_TEXTAREA', 2);
define('SMOPT_TYPE_INTEGER', 3);
define('SMOPT_TYPE_FLOAT', 4);
define('SMOPT_TYPE_BOOLEAN', 5);
define('SMOPT_TYPE_HIDDEN', 6);
define('SMOPT_TYPE_COMMENT', 7);
define('SMOPT_TYPE_FLDRLIST', 8);
define('SMOPT_TYPE_FLDRLIST_MULTI', 9);
define('SMOPT_TYPE_EDIT_LIST', 10);
define('SMOPT_TYPE_EDIT_LIST_ASSOCIATIVE', 11);
define('SMOPT_TYPE_STRLIST_MULTI', 12);
define('SMOPT_TYPE_BOOLEAN_CHECKBOX', 13);
define('SMOPT_TYPE_BOOLEAN_RADIO', 14);
define('SMOPT_TYPE_STRLIST_RADIO', 15);
define('SMOPT_TYPE_SUBMIT', 16);
define('SMOPT_TYPE_INFO', 17);
define('SMOPT_TYPE_PASSWORD', 18);
// Define constants for the layout scheme for edit lists
define('SMOPT_EDIT_LIST_LAYOUT_LIST', 0);
define('SMOPT_EDIT_LIST_LAYOUT_SELECT', 1);
// Define constants for the options refresh levels
define('SMOPT_REFRESH_NONE', 0);
define('SMOPT_REFRESH_FOLDERLIST', 1);
define('SMOPT_REFRESH_ALL', 2);
// Define constants for the options size
define('SMOPT_SIZE_SMALL', 1);
define('SMOPT_SIZE_MEDIUM', 2);
define('SMOPT_SIZE_LARGE', 3);
define('SMOPT_SIZE_NORMAL', 5);
// Define miscellaneous options constants
define('SMOPT_SAVE_DEFAULT', 'save_option');
define('SMOPT_SAVE_NOOP', 'save_option_noop');
// Convenience array of values 'a' through 'z'
Documentation generated on Mon, 13 Jan 2020 04:22:13 +0100 by phpDocumentor 1.4.3