source: trunk/include/constants.php @ 5341

Last change on this file since 5341 was 5341, checked in by patdenice, 14 years ago

Feature 1535: Add languages table.
Ready for theme manager!

File size: 4.8 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2010 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24// Default settings
25define('PHPWG_VERSION', 'Colibri');
26define('PHPWG_DEFAULT_LANGUAGE', 'en_UK');
27define('PHPWG_DEFAULT_TEMPLATE', 'Sylvia');
28
29define('PHPWG_THEMES_PATH', $conf['themes_dir'].'/');
30
31// Required versions
32define('REQUIRED_PHP_VERSION', '5.0.0');
33define('REQUIRED_MYSQL_VERSION', '4.1.22');
34
35// Access codes
36define('ACCESS_FREE', 0);
37define('ACCESS_GUEST', 1);
38define('ACCESS_CLASSIC', 2);
39define('ACCESS_ADMINISTRATOR', 3);
40define('ACCESS_WEBMASTER', 4);
41define('ACCESS_CLOSED', 5);
42
43// Sanity checks
44define('PATTERN_ID', '/^\d+$/');
45
46// Table names
47if (!defined('CATEGORIES_TABLE'))
48  define('CATEGORIES_TABLE', $prefixeTable.'categories');
49if (!defined('COMMENTS_TABLE'))
50  define('COMMENTS_TABLE', $prefixeTable.'comments');
51if (!defined('CONFIG_TABLE'))
52  define('CONFIG_TABLE', $prefixeTable.'config');
53if (!defined('FAVORITES_TABLE'))
54  define('FAVORITES_TABLE', $prefixeTable.'favorites');
55if (!defined('GROUP_ACCESS_TABLE'))
56  define('GROUP_ACCESS_TABLE', $prefixeTable.'group_access');
57if (!defined('GROUPS_TABLE'))
58  define('GROUPS_TABLE', $prefixeTable.'groups');
59if (!defined('HISTORY_TABLE'))
60  define('HISTORY_TABLE', $prefixeTable.'history');
61if (!defined('HISTORY_SUMMARY_TABLE'))
62  define('HISTORY_SUMMARY_TABLE', $prefixeTable.'history_summary');
63if (!defined('IMAGE_CATEGORY_TABLE'))
64  define('IMAGE_CATEGORY_TABLE', $prefixeTable.'image_category');
65if (!defined('IMAGES_TABLE'))
66  define('IMAGES_TABLE', $prefixeTable.'images');
67if (!defined('SESSIONS_TABLE'))
68  define('SESSIONS_TABLE', $prefixeTable.'sessions');
69if (!defined('SITES_TABLE'))
70  define('SITES_TABLE', $prefixeTable.'sites');
71if (!defined('USER_ACCESS_TABLE'))
72  define('USER_ACCESS_TABLE', $prefixeTable.'user_access');
73if (!defined('USER_GROUP_TABLE'))
74  define('USER_GROUP_TABLE', $prefixeTable.'user_group');
75if (!defined('USERS_TABLE'))
76  define('USERS_TABLE', $conf['users_table']);
77if (!defined('USER_INFOS_TABLE'))
78  define('USER_INFOS_TABLE', $prefixeTable.'user_infos');
79if (!defined('USER_FEED_TABLE'))
80  define('USER_FEED_TABLE', $prefixeTable.'user_feed');
81if (!defined('WAITING_TABLE'))
82  define('WAITING_TABLE', $prefixeTable.'waiting');
83if (!defined('RATE_TABLE'))
84  define('RATE_TABLE', $prefixeTable.'rate');
85if (!defined('USER_CACHE_TABLE'))
86  define('USER_CACHE_TABLE', $prefixeTable.'user_cache');
87if (!defined('USER_CACHE_CATEGORIES_TABLE'))
88  define('USER_CACHE_CATEGORIES_TABLE', $prefixeTable.'user_cache_categories');
89if (!defined('CADDIE_TABLE'))
90  define('CADDIE_TABLE', $prefixeTable.'caddie');
91if (!defined('UPGRADE_TABLE'))
92  define('UPGRADE_TABLE', $prefixeTable.'upgrade');
93if (!defined('SEARCH_TABLE'))
94  define('SEARCH_TABLE', $prefixeTable.'search');
95if (!defined('USER_MAIL_NOTIFICATION_TABLE'))
96  define('USER_MAIL_NOTIFICATION_TABLE', $prefixeTable.'user_mail_notification');
97if (!defined('TAGS_TABLE'))
98  define('TAGS_TABLE', $prefixeTable.'tags');
99if (!defined('IMAGE_TAG_TABLE'))
100  define('IMAGE_TAG_TABLE', $prefixeTable.'image_tag');
101if (!defined('PLUGINS_TABLE'))
102  define('PLUGINS_TABLE', $prefixeTable.'plugins');
103if (!defined('OLD_PERMALINKS_TABLE'))
104  define('OLD_PERMALINKS_TABLE', $prefixeTable.'old_permalinks');
105if (!defined('THEMES_TABLE'))
106  define('THEMES_TABLE', $prefixeTable.'themes');
107if (!defined('LANGUAGES_TABLE'))
108  define('LANGUAGES_TABLE', $prefixeTable.'languages');
109
110?>
Note: See TracBrowser for help on using the repository browser.