1 | <?php |
---|
2 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
3 | |
---|
4 | /* ************************** */ |
---|
5 | /* ** Constants ** */ |
---|
6 | /* ************************** */ |
---|
7 | |
---|
8 | define('CF_TITLE', 'cf_plugin_name'); |
---|
9 | |
---|
10 | // Directories |
---|
11 | define('CF_INCLUDE_DIR', 'include/'); |
---|
12 | define('CF_CLASSES_DIR', 'classes/'); |
---|
13 | define('CF_IMAGES_DIR', 'images/'); |
---|
14 | define('CF_TEMPLATE_DIR', 'themes/'); |
---|
15 | define('CF_ADMIN_DIR', 'admin/'); |
---|
16 | define('CF_LANGUAGE_DIR', 'language/'); |
---|
17 | // Path |
---|
18 | define('CF_CLASSES', CF_PATH.CF_CLASSES_DIR); |
---|
19 | define('CF_INCLUDE', CF_PATH.CF_INCLUDE_DIR); |
---|
20 | define('CF_TEMPLATE', CF_PATH.CF_TEMPLATE_DIR); |
---|
21 | define('CF_LANGUAGE', CF_PATH.CF_LANGUAGE_DIR); |
---|
22 | define('CF_ADMIN', CF_PATH.CF_ADMIN_DIR); |
---|
23 | define('CF_AMDIN_TPL', CF_PATH.CF_ADMIN_DIR.CF_TEMPLATE_DIR); |
---|
24 | // Files |
---|
25 | define('CF_OBSOLETE', 'obsolete.list'); |
---|
26 | // Constants |
---|
27 | define('CF_DEBUG_ACTIVE', false); |
---|
28 | define('CF_MENUBAR_KEY', 'contact_form'); |
---|
29 | define('CF_URL_PARAMETER', 'contact'); |
---|
30 | define('CF_SEPARATOR_PATTERN', '||SEPARATOR HERE||'); |
---|
31 | define('CF_CHECKED', 'checked="checked"'); |
---|
32 | define('CF_SEPARATOR', '='); |
---|
33 | define('CF_SEPARATOR_LENGTH', 20); |
---|
34 | define('CF_DEFAULT_PREFIX', 'Piwigo ContactForm'); |
---|
35 | define('CF_REDIRECT_DELAY', 5); |
---|
36 | define('CF_LANG_DEFAULT', 'default'); |
---|
37 | // Config keys |
---|
38 | if (isset($plugin)) { |
---|
39 | define('CF_CFG_DB_KEY', $plugin['id']); |
---|
40 | } |
---|
41 | define('CF_CFG_DB_FACTORY', 'Factory settings for plugin %s [%s]'); |
---|
42 | define('CF_CFG_DB_COMMENT', 'Configuration of plugin %s'); |
---|
43 | define('CF_CFG_COMMENT', 'comment'); |
---|
44 | |
---|
45 | define('CF_CFG_MENU_LINK', 'cf_menu_link'); |
---|
46 | define('CF_CFG_SUBJECT_PREFIX', 'cf_subject_prefix'); |
---|
47 | define('CF_CFG_SEPARATOR_LEN', 'cf_separator_length'); |
---|
48 | define('CF_CFG_SEPARATOR', 'cf_separator'); |
---|
49 | define('CF_CFG_ALLOW_GUEST', 'cf_allow_guest'); |
---|
50 | define('CF_CFG_MAIL_MANDATORY', 'cf_mandatory_mail'); |
---|
51 | define('CF_CFG_NAME_MANDATORY', 'cf_mandatory_name'); |
---|
52 | define('CF_CFG_REDIRECT_DELAY', 'cf_redirect_delay'); |
---|
53 | define('CF_CFG_ADMIN_MAILS', 'cf_admin_mails'); |
---|
54 | |
---|
55 | /* ************************** */ |
---|
56 | /* ** Includes ** */ |
---|
57 | /* ************************** */ |
---|
58 | |
---|
59 | // Include plugin functions |
---|
60 | @include_once(CF_INCLUDE.'cf_functions.inc.php'); |
---|
61 | |
---|
62 | // Load class files |
---|
63 | cf_require_class("CF_Log"); |
---|
64 | cf_require_class("CF_Config"); |
---|
65 | cf_require_class("CF_Plugin"); |
---|
66 | |
---|
67 | /* ************************** */ |
---|
68 | /* ** Variable definitions ** */ |
---|
69 | /* ************************** */ |
---|
70 | global $conf; |
---|
71 | $cf_config_default = array(); |
---|
72 | $cf_config_default[CF_CFG_MENU_LINK] = true; |
---|
73 | $cf_config_default[CF_CFG_SUBJECT_PREFIX] = CF_DEFAULT_PREFIX; |
---|
74 | $cf_config_default[CF_CFG_SEPARATOR_LEN] = CF_SEPARATOR_LENGTH; |
---|
75 | $cf_config_default[CF_CFG_SEPARATOR] = CF_SEPARATOR; |
---|
76 | $cf_config_default[CF_CFG_ALLOW_GUEST] = true; |
---|
77 | $cf_config_default[CF_CFG_MAIL_MANDATORY] = true; |
---|
78 | $cf_config_default[CF_CFG_NAME_MANDATORY] = true; |
---|
79 | $cf_config_default[CF_CFG_REDIRECT_DELAY] = CF_REDIRECT_DELAY; |
---|
80 | $cf_config_default[CF_CFG_ADMIN_MAILS] = cf_get_admins_contacts(); |
---|
81 | $cf_config_default[CF_CFG_ADMIN_MAILS] = array(); |
---|
82 | CF_Config::$default_config = $cf_config_default; |
---|
83 | ?> |
---|