source: trunk/include/constants.php @ 19703

Last change on this file since 19703 was 19703, checked in by plg, 11 years ago

update Piwigo headers to 2013 (the end of the world didn't occur as expected on r12922)

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