-
Notifications
You must be signed in to change notification settings - Fork 12
/
lib_functions.php
294 lines (222 loc) · 10.5 KB
/
lib_functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<?php
/*
* Copyright (c) 2006-2012 Oliver Seidel (email : oliver.seidel @ deliciousdays.com)
* Copyright (c) 2014-2017 Bastian Germann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
function cforms2_settings_corrupted() {
$tmp = plugin_dir_path(__FILE__) . 'cforms-corrupted.php';
add_menu_page(__('cformsII', 'cforms2'), __('cformsII', 'cforms2'), 'manage_cforms', $tmp, '', plugin_dir_url(__FILE__) . 'images/cformsicon.png');
add_submenu_page($tmp, __('Corrupted Settings', 'cforms2'), __('Corrupted Settings', 'cforms2'), 'manage_cforms', $tmp);
add_action('admin_enqueue_scripts', 'cforms2_enqueue_style_admin');
}
function cforms2_start_session() {
if (function_exists('session_id')) {
$session_id = session_id();
if (empty($session_id)) {
session_cache_limiter('nocache');
session_start();
}
}
}
function cforms2_field() {
check_admin_referer('cforms2_field');
$type = $_POST['type'];
$fields = cforms2_get_fieldtypes();
if (array_key_exists($type, $fields))
echo $fields[$type]->render_settings();
die();
}
function cforms2_delete_db_and_deactivate() {
if (!isset($_POST['cfdeleteall']))
return;
if (is_user_logged_in() && current_user_can('manage_options')) {
define('WP_UNINSTALL_PLUGIN', true);
require plugin_dir_path(__FILE__) . 'uninstall.php';
// deactivate cforms plugin
$curPlugs = get_option('active_plugins');
array_splice($curPlugs, array_search('cforms2', $curPlugs), 1); // Array-function!
update_option('active_plugins', $curPlugs);
header('Location: plugins.php?deactivate=true');
die();
}
}
/** check user access */
function cforms2_check_access_priv() {
if (!current_user_can('manage_cforms')) {
$err = '<h2>' . __('cforms error', 'cforms2') . '</h2><div class="updated fade" id="message"><p>' . __('You do not have the proper privileges to access this page.', 'cforms2') . '</p></div></div>';
die($err);
}
}
/** some css for positioning the form elements */
function cforms2_enqueue_scripts() {
global $wp_query;
$cformsSettings = get_option('cforms_settings');
// add content actions and filters
$page_obj = $wp_query->get_queried_object();
$exclude = ($cformsSettings['global']['cforms_inexclude']['ex'] == '1');
$onPages = str_replace(' ', '', stripslashes(htmlspecialchars($cformsSettings['global']['cforms_inexclude']['ids'])));
$onPagesA = explode(',', $onPages);
if ($onPages == '' || ($page_obj instanceof WP_POST && in_array($page_obj->ID, $onPagesA) && !$exclude) || ($page_obj instanceof WP_POST && !in_array($page_obj->ID, $onPagesA) && $exclude)) {
if ($cformsSettings['global']['cforms_css']) {
wp_register_style('cforms2', plugin_dir_url(__FILE__) . 'styling/' . $cformsSettings['global']['cforms_css'], array(), CFORMS2_VERSION);
wp_enqueue_style('cforms2');
}
wp_register_script('cforms2', plugin_dir_url(__FILE__) . 'js/cforms.js', array('jquery'), CFORMS2_VERSION);
wp_localize_script('cforms2', 'cforms2_ajax', array(
'url' => admin_url('admin-ajax.php'),
'nonces' => array(
'submitcform' => wp_create_nonce('submitcform')
)
));
wp_enqueue_script('cforms2');
}
}
/** add cforms menu */
function cforms2_menu() {
$p = plugin_dir_path(plugin_basename(__FILE__));
$o = $p . 'cforms-options.php';
add_menu_page(__('cformsII', 'cforms2'), __('cformsII', 'cforms2'), 'manage_cforms', $o, '', plugin_dir_url(__FILE__) . 'images/cformsicon.png');
add_submenu_page($o, __('Form Settings', 'cforms2'), __('Form Settings', 'cforms2'), 'manage_cforms', $o);
add_submenu_page($o, __('Global Settings', 'cforms2'), __('Global Settings', 'cforms2'), 'manage_cforms', $p . 'cforms-global-settings.php');
add_submenu_page($o, __('Help!', 'cforms2'), __('Help!', 'cforms2'), 'manage_cforms', $p . 'cforms-help.php');
}
/** get current page */
function cforms2_get_request_uri() {
$request_uri = $_SERVER['REQUEST_URI'];
if (!isset($_SERVER['REQUEST_URI']) || (strpos($_SERVER['SERVER_SOFTWARE'], 'IIS') !== false && strpos($_SERVER['REQUEST_URI'], 'wp-admin') === false)) {
if (isset($_SERVER['SCRIPT_NAME']))
$request_uri = $_SERVER['SCRIPT_NAME'];
else
$request_uri = $_SERVER['PHP_SELF'];
}
return $request_uri;
}
function cforms2_enqueue_style_admin() {
wp_register_style('cforms-admin', plugin_dir_url(__FILE__) . 'cforms-admin.css', false, CFORMS2_VERSION);
wp_enqueue_style('cforms-admin');
}
function cforms2_admin_enqueue_scripts() {
wp_enqueue_style('wp-jquery-ui-dialog');
$r = plugin_dir_url(__FILE__);
wp_register_script('cforms-admin', $r . 'js/cforms.admin.js', array(
'jquery', 'jquery-ui-button', 'jquery-ui-dialog', 'jquery-ui-draggable', 'jquery-ui-sortable'
), CFORMS2_VERSION);
wp_localize_script('cforms-admin', 'cforms2_nonces', array(
'cforms2_field' => wp_create_nonce('cforms2_field')
));
wp_localize_script('cforms-admin', 'cforms2_i18n', array(
'OK' => __('OK', 'cforms2'),
'Cancel' => __('Cancel', 'cforms2')
));
wp_enqueue_script('cforms-admin');
cforms2_enqueue_style_admin();
}
/** plugin uninstalled? */
function cforms2_check_erased() {
if (count(Cforms2\FormSettings::forms()) === 0) {
echo '<div class="wrap"><h2>'
. __('All cforms data has been erased!', 'cforms2')
. '</h2>'
. '<p class="ex">' . __('Please go to your <strong>Plugins</strong> tab and either disable the plugin, or toggle its status (disable/enable) to revive cforms!', 'cforms2') . '</p>'
. '<p class="ex">' . __('In case disabling/enabling doesn\'t seem to properly set the plugin defaults, try login out and back in and <strong>don\'t select the checkbox for activation</strong> on the plugin page.', 'cforms2') . '</p>'
. '</div>';
return true;
}
return false;
}
/** add menu items to admin bar */
function cforms2_add_admin_bar_root($admin_bar, $id, $ti) {
$arr = array('id' => $id,
'title' => $ti,
'href' => false
);
$admin_bar->add_node($arr);
}
function cforms2_add_admin_bar_item($admin_bar, $id, $ti, $hi, $p = 'cforms-bar') {
$arr = array('parent' => $p,
'id' => $id,
'title' => $ti,
'href' => '#',
'meta' => array('title' => $hi)
);
$admin_bar->add_node($arr);
}
function cforms2_add_items_global($admin_bar) {
cforms2_add_admin_bar_root($admin_bar, 'cforms-bar', 'cforms Admin');
cforms2_add_admin_bar_item($admin_bar, 'cforms-showinfo', __('Produce debug output', 'cforms2'), __('Outputs -for debug purposes- all cforms settings', 'cforms2'));
cforms2_add_admin_bar_item($admin_bar, 'cforms-deleteall', __('Uninstalling / removing cforms', 'cforms2'), __('Be careful here...', 'cforms2'));
cforms2_add_admin_bar_item($admin_bar, 'cforms-SubmitOptions', __('Save & update form settings', 'cforms2'), '', 'root-default');
}
function cforms2_add_items_options($admin_bar) {
cforms2_add_admin_bar_root($admin_bar, 'cforms-bar', 'cforms Admin');
cforms2_add_admin_bar_item($admin_bar, 'cforms-addbutton', __('Add new form', 'cforms2'), __('Adds a new form with default values', 'cforms2'));
cforms2_add_admin_bar_item($admin_bar, 'cforms-dupbutton', __('Duplicate current form', 'cforms2'), __('Clones the current form', 'cforms2'));
if (count(Cforms2\FormSettings::forms()) > 1)
cforms2_add_admin_bar_item($admin_bar, 'cforms-delbutton', __('Delete current form (!)', 'cforms2'), __('Clicking this button WILL delete this form', 'cforms2'));
cforms2_add_admin_bar_item($admin_bar, 'cforms-SubmitOptions', __('Save & update form settings', 'cforms2'), '', 'root-default');
}
function cforms2_get_boolean_from_request($index) {
if (isset($_POST[$index]) && $_POST[$index])
return '1';
else
return '0';
}
function cforms2_get_from_request($index) {
if (isset($_POST[$index]) && $_POST[$index])
return $_POST[$index];
else
return '';
}
function cforms2_get_pluggable_captchas() {
static $captchas = array();
if (empty($captchas))
// This filter is meant to add one element to the associative array per cforms2_captcha
// implementation consisting of a unique identifier as key and object as value.
// known identifiers are:
// cforms2_question_and_answer
// verification
// captcha
$captchas = apply_filters('cforms2_add_captcha', $captchas);
return $captchas;
}
function cforms2_get_fieldtypes() {
static $fields = array();
if (empty($fields)) {
// This filter is meant to add one element to the associative array per Fieldtype
// implementation consisting of a unique identifier as key and object as value.
$fields = apply_filters('cforms2_add_fieldtype', $fields);
}
return $fields;
}
function cforms2_check_pluggable_captchas_authn_users($field_type) {
$captchas = cforms2_get_pluggable_captchas();
return array_key_exists($field_type, $captchas) && is_user_logged_in() && !$captchas[$field_type]->check_authn_users();
}
function cforms2_admin_date_format() {
return __('dd', 'cforms2') . '/' . __('mm', 'cforms2') . '/' . __('yyyy', 'cforms2');
}
function cforms2_wp_mail_failed($wp_mail_failed_error) {
$err_data = "\nError data: " . print_r($wp_mail_failed_error->get_error_data('wp_mail_failed'), 1);
trigger_error($wp_mail_failed_error->get_error_message('wp_mail_failed') . $err_data, E_USER_WARNING);
}
function cforms2_insert_modal() {
echo '<div id="cf_editbox" title="' . __('Input Field Settings', 'cforms2') . '">'
. '<div class="cf_ed_main"><div id="cf_target"></div></div></div>';
}
/** strip stuff */
function cforms2_prep($v, $d) {
return empty($v) ? $d : stripslashes(htmlspecialchars($v));
}