String fix
[squirrelmail.git] / functions / constants.php
CommitLineData
23d6bd09 1<?php
2ba13803 2
35586184 3/**
4 * constants.php
5 *
6c84ba1e 6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
598294a7 9 * Loads constants used by the rest of the SquirrelMail source.
acb7fa65 10 * This file is included by functions/date.php, include/load_prefs.php,
11 * plugins/administrator/defines.php, src/login.php and src/redirect.php.
35586184 12 *
31841a9e 13 * @version $Id$
d6c32258 14 * @package squirrelmail
35586184 15 */
23d6bd09 16
d6c32258 17/** Need to enable plugin functions for a hook */
b68edc75 18require_once(SM_PATH . 'functions/plugin.php'); /* Required for the hook */
35586184 19
acb7fa65 20////////////////////////////////////////////////////////////////
21// Set values for constants used by SquirrelMail preferences. //
22////////////////////////////////////////////////////////////////
fb120846 23
0e4ae91a 24/* Define basic, general purpose preference constants. */
25define('SMPREF_NO', 0);
26define('SMPREF_OFF', 0);
27define('SMPREF_YES', 1);
28define('SMPREF_ON', 1);
29define('SMPREF_NONE', 'none');
30
31/* Define constants for location based preferences. */
32define('SMPREF_LOC_TOP', 'top');
33define('SMPREF_LOC_BETWEEN', 'between');
34define('SMPREF_LOC_BOTTOM', 'bottom');
35define('SMPREF_LOC_LEFT', '');
36define('SMPREF_LOC_RIGHT', 'right');
37
38/* Define preferences for folder settings. */
39define('SMPREF_UNSEEN_NONE', 1);
40define('SMPREF_UNSEEN_INBOX', 2);
41define('SMPREF_UNSEEN_ALL', 3);
5ed13ec8 42define('SMPREF_UNSEEN_SPECIAL', 4); // Only special folders
43define('SMPREF_UNSEEN_NORMAL', 5); // Only normal folders
0e4ae91a 44define('SMPREF_UNSEEN_ONLY', 1);
45define('SMPREF_UNSEEN_TOTAL', 2);
46
47/* Define constants for time/date display preferences. */
48define('SMPREF_TIME_24HR', 1);
49define('SMPREF_TIME_12HR', 2);
50
51/* Define constants for javascript preferences. */
52define('SMPREF_JS_OFF', 0);
53define('SMPREF_JS_ON', 1);
54define('SMPREF_JS_AUTODETECT', 2);
55
56do_hook('loading_constants');
57
62f7daa5 58?>