1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based photo gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2012 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 |
---|
25 | define('PHPWG_VERSION', '2.4.0RC3'); |
---|
26 | define('PHPWG_DEFAULT_LANGUAGE', 'en_UK'); |
---|
27 | define('PHPWG_DEFAULT_TEMPLATE', 'elegant'); |
---|
28 | |
---|
29 | define('PHPWG_THEMES_PATH', $conf['themes_dir'].'/'); |
---|
30 | defined('PWG_COMBINED_DIR') or define('PWG_COMBINED_DIR', $conf['data_location'].'combined/'); |
---|
31 | defined('PWG_DERIVATIVE_DIR') or define('PWG_DERIVATIVE_DIR', $conf['data_location'].'i/'); |
---|
32 | |
---|
33 | // Required versions |
---|
34 | define('REQUIRED_PHP_VERSION', '5.0.0'); |
---|
35 | |
---|
36 | // Access codes |
---|
37 | define('ACCESS_FREE', 0); |
---|
38 | define('ACCESS_GUEST', 1); |
---|
39 | define('ACCESS_CLASSIC', 2); |
---|
40 | define('ACCESS_ADMINISTRATOR', 3); |
---|
41 | define('ACCESS_WEBMASTER', 4); |
---|
42 | define('ACCESS_CLOSED', 5); |
---|
43 | |
---|
44 | // Sanity checks |
---|
45 | define('PATTERN_ID', '/^\d+$/'); |
---|
46 | |
---|
47 | // Table names |
---|
48 | if (!defined('CATEGORIES_TABLE')) |
---|
49 | define('CATEGORIES_TABLE', $prefixeTable.'categories'); |
---|
50 | if (!defined('COMMENTS_TABLE')) |
---|
51 | define('COMMENTS_TABLE', $prefixeTable.'comments'); |
---|
52 | if (!defined('CONFIG_TABLE')) |
---|
53 | define('CONFIG_TABLE', $prefixeTable.'config'); |
---|
54 | if (!defined('FAVORITES_TABLE')) |
---|
55 | define('FAVORITES_TABLE', $prefixeTable.'favorites'); |
---|
56 | if (!defined('GROUP_ACCESS_TABLE')) |
---|
57 | define('GROUP_ACCESS_TABLE', $prefixeTable.'group_access'); |
---|
58 | if (!defined('GROUPS_TABLE')) |
---|
59 | define('GROUPS_TABLE', $prefixeTable.'groups'); |
---|
60 | if (!defined('HISTORY_TABLE')) |
---|
61 | define('HISTORY_TABLE', $prefixeTable.'history'); |
---|
62 | if (!defined('HISTORY_SUMMARY_TABLE')) |
---|
63 | define('HISTORY_SUMMARY_TABLE', $prefixeTable.'history_summary'); |
---|
64 | if (!defined('IMAGE_CATEGORY_TABLE')) |
---|
65 | define('IMAGE_CATEGORY_TABLE', $prefixeTable.'image_category'); |
---|
66 | if (!defined('IMAGES_TABLE')) |
---|
67 | define('IMAGES_TABLE', $prefixeTable.'images'); |
---|
68 | if (!defined('SESSIONS_TABLE')) |
---|
69 | define('SESSIONS_TABLE', $prefixeTable.'sessions'); |
---|
70 | if (!defined('SITES_TABLE')) |
---|
71 | define('SITES_TABLE', $prefixeTable.'sites'); |
---|
72 | if (!defined('USER_ACCESS_TABLE')) |
---|
73 | define('USER_ACCESS_TABLE', $prefixeTable.'user_access'); |
---|
74 | if (!defined('USER_GROUP_TABLE')) |
---|
75 | define('USER_GROUP_TABLE', $prefixeTable.'user_group'); |
---|
76 | if (!defined('USERS_TABLE')) |
---|
77 | define('USERS_TABLE', isset($conf['users_table']) ? $conf['users_table'] : $prefixeTable.'users' ); |
---|
78 | if (!defined('USER_INFOS_TABLE')) |
---|
79 | define('USER_INFOS_TABLE', $prefixeTable.'user_infos'); |
---|
80 | if (!defined('USER_FEED_TABLE')) |
---|
81 | define('USER_FEED_TABLE', $prefixeTable.'user_feed'); |
---|
82 | if (!defined('RATE_TABLE')) |
---|
83 | define('RATE_TABLE', $prefixeTable.'rate'); |
---|
84 | if (!defined('USER_CACHE_TABLE')) |
---|
85 | define('USER_CACHE_TABLE', $prefixeTable.'user_cache'); |
---|
86 | if (!defined('USER_CACHE_CATEGORIES_TABLE')) |
---|
87 | define('USER_CACHE_CATEGORIES_TABLE', $prefixeTable.'user_cache_categories'); |
---|
88 | if (!defined('CADDIE_TABLE')) |
---|
89 | define('CADDIE_TABLE', $prefixeTable.'caddie'); |
---|
90 | if (!defined('UPGRADE_TABLE')) |
---|
91 | define('UPGRADE_TABLE', $prefixeTable.'upgrade'); |
---|
92 | if (!defined('SEARCH_TABLE')) |
---|
93 | define('SEARCH_TABLE', $prefixeTable.'search'); |
---|
94 | if (!defined('USER_MAIL_NOTIFICATION_TABLE')) |
---|
95 | define('USER_MAIL_NOTIFICATION_TABLE', $prefixeTable.'user_mail_notification'); |
---|
96 | if (!defined('TAGS_TABLE')) |
---|
97 | define('TAGS_TABLE', $prefixeTable.'tags'); |
---|
98 | if (!defined('IMAGE_TAG_TABLE')) |
---|
99 | define('IMAGE_TAG_TABLE', $prefixeTable.'image_tag'); |
---|
100 | if (!defined('PLUGINS_TABLE')) |
---|
101 | define('PLUGINS_TABLE', $prefixeTable.'plugins'); |
---|
102 | if (!defined('OLD_PERMALINKS_TABLE')) |
---|
103 | define('OLD_PERMALINKS_TABLE', $prefixeTable.'old_permalinks'); |
---|
104 | if (!defined('THEMES_TABLE')) |
---|
105 | define('THEMES_TABLE', $prefixeTable.'themes'); |
---|
106 | if (!defined('LANGUAGES_TABLE')) |
---|
107 | define('LANGUAGES_TABLE', $prefixeTable.'languages'); |
---|
108 | |
---|
109 | ?> |
---|