| 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 |
|---|
| 25 | define('PHPWG_VERSION', 'Colibri'); |
|---|
| 26 | define('PHPWG_DEFAULT_LANGUAGE', 'en_UK'); |
|---|
| 27 | define('PHPWG_DEFAULT_TEMPLATE', 'Sylvia'); |
|---|
| 28 | |
|---|
| 29 | define('PHPWG_THEMES_PATH', $conf['themes_dir'].'/'); |
|---|
| 30 | |
|---|
| 31 | // Required versions |
|---|
| 32 | define('REQUIRED_PHP_VERSION', '5.0.0'); |
|---|
| 33 | |
|---|
| 34 | // Access codes |
|---|
| 35 | define('ACCESS_FREE', 0); |
|---|
| 36 | define('ACCESS_GUEST', 1); |
|---|
| 37 | define('ACCESS_CLASSIC', 2); |
|---|
| 38 | define('ACCESS_ADMINISTRATOR', 3); |
|---|
| 39 | define('ACCESS_WEBMASTER', 4); |
|---|
| 40 | define('ACCESS_CLOSED', 5); |
|---|
| 41 | |
|---|
| 42 | // Sanity checks |
|---|
| 43 | define('PATTERN_ID', '/^\d+$/'); |
|---|
| 44 | |
|---|
| 45 | // Table names |
|---|
| 46 | if (!defined('CATEGORIES_TABLE')) |
|---|
| 47 | define('CATEGORIES_TABLE', $prefixeTable.'categories'); |
|---|
| 48 | if (!defined('COMMENTS_TABLE')) |
|---|
| 49 | define('COMMENTS_TABLE', $prefixeTable.'comments'); |
|---|
| 50 | if (!defined('CONFIG_TABLE')) |
|---|
| 51 | define('CONFIG_TABLE', $prefixeTable.'config'); |
|---|
| 52 | if (!defined('FAVORITES_TABLE')) |
|---|
| 53 | define('FAVORITES_TABLE', $prefixeTable.'favorites'); |
|---|
| 54 | if (!defined('GROUP_ACCESS_TABLE')) |
|---|
| 55 | define('GROUP_ACCESS_TABLE', $prefixeTable.'group_access'); |
|---|
| 56 | if (!defined('GROUPS_TABLE')) |
|---|
| 57 | define('GROUPS_TABLE', $prefixeTable.'groups'); |
|---|
| 58 | if (!defined('HISTORY_TABLE')) |
|---|
| 59 | define('HISTORY_TABLE', $prefixeTable.'history'); |
|---|
| 60 | if (!defined('HISTORY_SUMMARY_TABLE')) |
|---|
| 61 | define('HISTORY_SUMMARY_TABLE', $prefixeTable.'history_summary'); |
|---|
| 62 | if (!defined('IMAGE_CATEGORY_TABLE')) |
|---|
| 63 | define('IMAGE_CATEGORY_TABLE', $prefixeTable.'image_category'); |
|---|
| 64 | if (!defined('IMAGES_TABLE')) |
|---|
| 65 | define('IMAGES_TABLE', $prefixeTable.'images'); |
|---|
| 66 | if (!defined('SESSIONS_TABLE')) |
|---|
| 67 | define('SESSIONS_TABLE', $prefixeTable.'sessions'); |
|---|
| 68 | if (!defined('SITES_TABLE')) |
|---|
| 69 | define('SITES_TABLE', $prefixeTable.'sites'); |
|---|
| 70 | if (!defined('USER_ACCESS_TABLE')) |
|---|
| 71 | define('USER_ACCESS_TABLE', $prefixeTable.'user_access'); |
|---|
| 72 | if (!defined('USER_GROUP_TABLE')) |
|---|
| 73 | define('USER_GROUP_TABLE', $prefixeTable.'user_group'); |
|---|
| 74 | if (!defined('USERS_TABLE')) |
|---|
| 75 | define('USERS_TABLE', $conf['users_table']); |
|---|
| 76 | if (!defined('USER_INFOS_TABLE')) |
|---|
| 77 | define('USER_INFOS_TABLE', $prefixeTable.'user_infos'); |
|---|
| 78 | if (!defined('USER_FEED_TABLE')) |
|---|
| 79 | define('USER_FEED_TABLE', $prefixeTable.'user_feed'); |
|---|
| 80 | if (!defined('WAITING_TABLE')) |
|---|
| 81 | define('WAITING_TABLE', $prefixeTable.'waiting'); |
|---|
| 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 | ?> |
|---|