[ squirrelmail-Bugs-488572 ] Clock is not 24-h aware
[squirrelmail.git] / functions / constants.php
1 <?php
2
3 /**
4 * constants.php
5 *
6 * Copyright (c) 1999-2001 The SquirrelMail Development 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('../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_ONLY', 1);
41 define('SMPREF_UNSEEN_TOTAL', 2);
42
43 /* Define constants for time/date display preferences. */
44 define('SMPREF_TIME_24HR', 1);
45 define('SMPREF_TIME_12HR', 2);
46
47 /* Define constants for javascript preferences. */
48 define('SMPREF_JS_OFF', 0);
49 define('SMPREF_JS_ON', 1);
50 define('SMPREF_JS_AUTODETECT', 2);
51
52 do_hook('loading_constants');
53
54 ?>