More rg=0
[squirrelmail.git] / functions / constants.php
1 <?php
2
3 /**
4 * constants.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
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$
14 */
15
16 require_once(SM_PATH . 'functions/plugin.php'); /* Required for the hook */
17
18 /**************************************************************/
19 /* Set values for constants used by Squirrelmail preferences. */
20 /**************************************************************/
21
22 /* Define basic, general purpose preference constants. */
23 define('SMPREF_NO', 0);
24 define('SMPREF_OFF', 0);
25 define('SMPREF_YES', 1);
26 define('SMPREF_ON', 1);
27 define('SMPREF_NONE', 'none');
28
29 /* Define constants for location based preferences. */
30 define('SMPREF_LOC_TOP', 'top');
31 define('SMPREF_LOC_BETWEEN', 'between');
32 define('SMPREF_LOC_BOTTOM', 'bottom');
33 define('SMPREF_LOC_LEFT', '');
34 define('SMPREF_LOC_RIGHT', 'right');
35
36 /* Define preferences for folder settings. */
37 define('SMPREF_UNSEEN_NONE', 1);
38 define('SMPREF_UNSEEN_INBOX', 2);
39 define('SMPREF_UNSEEN_ALL', 3);
40 define('SMPREF_UNSEEN_SPECIAL', 4); // Only special folders
41 define('SMPREF_UNSEEN_NORMAL', 5); // Only normal folders
42 define('SMPREF_UNSEEN_ONLY', 1);
43 define('SMPREF_UNSEEN_TOTAL', 2);
44
45 /* Define constants for time/date display preferences. */
46 define('SMPREF_TIME_24HR', 1);
47 define('SMPREF_TIME_12HR', 2);
48
49 /* Define constants for javascript preferences. */
50 define('SMPREF_JS_OFF', 0);
51 define('SMPREF_JS_ON', 1);
52 define('SMPREF_JS_AUTODETECT', 2);
53
54 do_hook('loading_constants');
55
56 ?>