We're living in 2004 now... perl is your friend for these kinds of things :)
[squirrelmail.git] / functions / constants.php
CommitLineData
23d6bd09 1<?php
2ba13803 2
35586184 3/**
4 * constants.php
5 *
82d304a0 6 * Copyright (c) 1999-2004 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Loads constants used by the rest of the Squirrelmail source.
10 * This file is include by src/login.php, src/redirect.php and
11 * src/load_prefs.php.
12 *
13 * $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
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
15e6162e 58?>