PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.0
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.0
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/models/FrmSettings.php +78 -390 6.326.0 View file →
@@ -2,256 +2,59 @@
2 2 if ( ! defined( 'ABSPATH' ) ) {
3 3 die( 'You are not allowed to call this page directly.' );
4 4 }
5 5
6 -#[\AllowDynamicProperties]
7 6 class FrmSettings {
8 -
9 - /**
10 - * @var string
11 - */
12 7 public $option_name = 'frm_options';
13 -
14 - /**
15 - * @var int
16 - */
17 8 public $menu;
18 -
19 - /**
20 - * @var int
21 - */
22 9 public $mu_menu;
23 -
24 - /**
25 - * @var int
26 - */
10 + public $use_html;
11 + public $jquery_css;
12 + public $accordion_js;
27 13 public $fade_form;
28 -
29 - /**
30 - * @var bool
31 - */
14 + public $old_css;
32 15 public $admin_bar;
33 16
34 - /**
35 - * @var string
36 - */
37 17 public $success_msg;
38 -
39 - /**
40 - * @var string
41 - */
42 18 public $blank_msg;
43 -
44 - /**
45 - * @var string
46 - */
47 19 public $unique_msg;
48 -
49 - /**
50 - * @var string
51 - */
52 20 public $invalid_msg;
53 -
54 - /**
55 - * @var string
56 - */
57 21 public $failed_msg;
58 -
59 - /**
60 - * @var string
61 - */
62 22 public $submit_value;
63 -
64 - /**
65 - * @var string
66 - */
67 23 public $login_msg;
68 -
69 - /**
70 - * @var string
71 - */
72 24 public $admin_permission;
73 25
74 - /**
75 - * @var string
76 - */
77 26 public $email_to;
78 -
79 - /**
80 - * @var string|null
81 - */
82 27 public $load_style;
83 -
84 - /**
85 - * @var bool|int|null
86 - */
87 28 public $custom_style;
88 29
89 - /**
90 - * @var string|null
91 - */
92 30 public $active_captcha;
93 -
94 - /**
95 - * Settings for reCAPTCHA.
96 - */
97 -
98 - /**
99 - * @var string|null
100 - */
31 + public $hcaptcha_pubkey;
32 + public $hcaptcha_privkey;
101 33 public $pubkey;
102 -
103 - /**
104 - * @var string|null
105 - */
106 34 public $privkey;
107 -
108 - /**
109 - * @var string|null
110 - */
111 35 public $re_lang;
112 -
113 - /**
114 - * @var string|null
115 - */
116 36 public $re_type;
117 -
118 - /**
119 - * @var string
120 - */
121 37 public $re_msg;
122 -
123 - /**
124 - * @var bool
125 - */
126 38 public $re_multi;
127 39
128 - /**
129 - * @var float|string|null
130 - */
131 - public $re_threshold;
132 -
133 - /**
134 - * Settings for hCaptcha.
135 - */
136 -
137 - /**
138 - * @var string
139 - */
140 - public $hcaptcha_pubkey;
141 -
142 - /**
143 - * @var string|null
144 - */
145 - public $hcaptcha_privkey;
146 -
147 - /**
148 - * Settings for Turnstile.
149 - */
150 -
151 - /**
152 - * @var string
153 - */
154 - public $turnstile_pubkey;
155 -
156 - /**
157 - * @var string|null
158 - */
159 - public $turnstile_privkey;
160 -
161 - /**
162 - * @var bool
163 - */
164 40 public $no_ips;
165 -
166 - /**
167 - * @var string
168 - */
169 - public $custom_header_ip;
170 -
171 - /**
172 - * @var int
173 - */
174 41 public $current_form = 0;
175 -
176 - /**
177 - * @var bool|int
178 - */
179 42 public $tracking;
180 43
181 44 /**
182 - * @var bool
183 - */
184 - public $summary_emails;
185 -
186 - /**
187 - * @var string
188 - */
189 - public $summary_emails_recipients;
190 -
191 - /**
192 - * @var string|null
193 - */
194 - public $default_email;
195 -
196 - /**
197 - * @var string
198 - */
199 - public $from_email;
200 -
201 - /**
202 - * @var string|null
203 - */
204 - public $currency;
205 -
206 - /**
207 45 * @since 6.0
208 46 *
209 - * @var false|string|null
47 + * @var string|false|null
210 48 */
211 49 public $custom_css;
212 50
213 - /**
214 - * @var int
215 - */
216 - public $honeypot;
217 -
218 - /**
219 - * @var bool
220 - */
221 - public $wp_spam_check;
222 -
223 - /**
224 - * @var bool
225 - */
226 - public $denylist_check;
227 -
228 - /**
229 - * @since 6.25.1
230 - *
231 - * @var int|null 1 if installed after welcome tour update, null otherwise.
232 - */
233 - public $installed_after_welcome_tour_update;
234 -
235 - /**
236 - * @var string
237 - */
238 - public $disallowed_words;
239 -
240 - /**
241 - * @var string
242 - */
243 - public $allowed_words;
244 -
245 - /**
246 - * @param array $args
247 - */
248 51 public function __construct( $args = array() ) {
249 52 if ( ! defined( 'ABSPATH' ) ) {
250 53 die( 'You are not allowed to call this page directly.' );
251 54 }
252 55
253 - $settings = get_option( $this->option_name );
56 + $settings = get_transient( $this->option_name );
254 57
255 58 if ( ! is_object( $settings ) ) {
256 59 $settings = $this->translate_settings( $settings );
257 60 }
@@ -265,24 +68,30 @@
265 68
266 69 $this->maybe_filter_for_form( $args );
267 70 }
268 71
269 - /**
270 - * @param false|object $settings
271 - *
272 - * @return object
273 - */
274 72 private function translate_settings( $settings ) {
275 - if ( $settings ) {
276 - // Workaround for W3 total cache conflict.
73 + if ( $settings ) { //workaround for W3 total cache conflict
277 74 return unserialize( serialize( $settings ) );
278 75 }
279 76
280 - // If unserializing didn't work.
281 - $settings = $this;
77 + $settings = get_option( $this->option_name );
78 + if ( is_object( $settings ) ) {
79 + set_transient( $this->option_name, $settings );
282 80
283 - update_option( $this->option_name, $settings, true );
81 + return $settings;
82 + }
284 83
84 + // If unserializing didn't work
85 + if ( $settings ) { //workaround for W3 total cache conflict
86 + $settings = unserialize( serialize( $settings ) );
87 + } else {
88 + $settings = $this;
89 + }
90 +
91 + update_option( $this->option_name, $settings );
92 + set_transient( $this->option_name, $settings );
93 +
285 94 return $settings;
286 95 }
287 96
288 97 /**
@@ -289,52 +98,36 @@
289 98 * @return array
290 99 */
291 100 public function default_options() {
292 101 return array(
293 - 'menu' => apply_filters( 'frm_default_menu', 'Formidable' ),
294 - 'mu_menu' => 0,
295 - 'fade_form' => false,
296 - 'admin_bar' => false,
102 + 'menu' => apply_filters( 'frm_default_menu', 'Formidable' ),
103 + 'mu_menu' => 0,
104 + 'use_html' => true,
105 + 'jquery_css' => false,
106 + 'accordion_js' => false,
107 + 'fade_form' => false,
108 + 'old_css' => false,
109 + 'admin_bar' => false,
297 110
298 - 're_multi' => 1,
111 + 're_multi' => 1,
299 112
300 - 'success_msg' => __( 'Your responses were successfully submitted. Thank you!', 'formidable' ),
301 - // translators: %s: [field_name] shortcode.
302 - 'blank_msg' => sprintf( __( '%s cannot be blank.', 'formidable' ), '[field_name]' ),
303 - // translators: %s: [field_name] shortcode.
304 - 'unique_msg' => sprintf( __( '%s must be unique.', 'formidable' ), '[field_name]' ),
305 - 'invalid_msg' => __( 'There was a problem with your submission. Errors are marked below.', 'formidable' ),
306 - 'failed_msg' => __( 'We\'re sorry. It looks like you\'ve already submitted that.', 'formidable' ),
307 - 'submit_value' => __( 'Submit', 'formidable' ),
308 - 'login_msg' => __( 'You do not have permission to view this form.', 'formidable' ),
309 - 'admin_permission' => __( 'You do not have permission to do that', 'formidable' ),
310 - 'new_tab_msg' => __( 'The page has been opened in a new tab.', 'formidable' ),
113 + 'success_msg' => __( 'Your responses were successfully submitted. Thank you!', 'formidable' ),
114 + 'blank_msg' => __( 'This field cannot be blank.', 'formidable' ),
115 + 'unique_msg' => __( 'This value must be unique.', 'formidable' ),
116 + 'invalid_msg' => __( 'There was a problem with your submission. Errors are marked below.', 'formidable' ),
117 + 'failed_msg' => __( 'We\'re sorry. It looks like you\'ve already submitted that.', 'formidable' ),
118 + 'submit_value' => __( 'Submit', 'formidable' ),
119 + 'login_msg' => __( 'You do not have permission to view this form.', 'formidable' ),
120 + 'admin_permission' => __( 'You do not have permission to do that', 'formidable' ),
311 121
312 - 'email_to' => '[admin_email]',
313 - 'enable_gdpr' => 0,
314 - 'no_gdpr_cookies' => 0,
315 - 'no_ips' => 0,
316 - 'custom_header_ip' => 0,
317 - 'tracking' => FrmAppHelper::pro_is_installed(),
318 - // Only enable this by default for the main site.
319 - 'summary_emails' => get_current_blog_id() === get_main_site_id(),
320 - 'summary_emails_recipients' => '[admin_email]',
122 + 'email_to' => '[admin_email]',
123 + 'no_ips' => 0,
124 + 'tracking' => FrmAppHelper::pro_is_installed(),
321 125
322 - // Normally custom CSS is a string. A false value is used when nothing has been set.
323 - // When it is false, we try to use the old custom_key value from the default style's post_content array.
324 - 'custom_css' => false,
325 - 'honeypot' => 1,
326 - 'wp_spam_check' => 0,
327 - 'denylist_check' => 0,
328 - 'disallowed_words' => '',
329 - 'allowed_words' => '',
330 - 'email_style' => 'classic',
126 + 'custom_css' => false,
331 127 );
332 128 }
333 129
334 - /**
335 - * @return void
336 - */
337 130 private function set_default_options() {
338 131 $this->fill_captcha_settings();
339 132
340 133 if ( ! isset( $this->load_style ) ) {
@@ -348,10 +141,9 @@
348 141 $this->fill_with_defaults();
349 142
350 143 if ( is_multisite() && is_admin() ) {
351 144 $mu_menu = get_site_option( 'frm_admin_menu_name' );
352 -
353 - if ( $mu_menu && $mu_menu ) {
145 + if ( $mu_menu && ! empty( $mu_menu ) ) {
354 146 $this->menu = $mu_menu;
355 147 $this->mu_menu = 1;
356 148 }
357 149 }
@@ -356,27 +148,17 @@
356 148 }
357 149 }
358 150
359 151 $frm_roles = FrmAppHelper::frm_capabilities( 'pro' );
360 -
361 152 foreach ( $frm_roles as $frm_role => $frm_role_description ) {
362 153 if ( ! isset( $this->$frm_role ) ) {
363 154 $this->$frm_role = 'administrator';
364 155 }
365 156 }
366 -
367 - if ( ! isset( $this->default_email ) ) {
368 - $this->default_email = get_option( 'admin_email' );
369 - }
370 -
371 - if ( ! isset( $this->currency ) ) {
372 - $this->currency = 'USD';
373 - }
374 157 }
375 158
376 159 /**
377 160 * @param array $params
378 - *
379 161 * @return void
380 162 */
381 163 public function fill_with_defaults( $params = array() ) {
382 164 $settings = $this->default_options();
@@ -383,9 +165,8 @@
383 165 $filter_html = ! FrmAppHelper::allow_unfiltered_html();
384 166
385 167 if ( $filter_html ) {
386 168 $filter_keys = array( 'failed_msg', 'blank_msg', 'invalid_msg', 'admin_permission', 'unique_msg', 'success_msg', 'submit_value', 'login_msg', 'menu' );
387 -
388 169 if ( ! empty( $params['additional_filter_keys'] ) ) {
389 170 $filter_keys = array_merge( $filter_keys, $params['additional_filter_keys'] );
390 171 }
391 172 } else {
@@ -415,18 +196,12 @@
415 196 *
416 197 * @param mixed $value The unsanitized global setting value.
417 198 * @param string $key The key of the global setting being saved.
418 199 * @param array $filter_keys These keys that are filtered with kses.
419 - *
420 200 * @return mixed
421 201 */
422 202 private function maybe_sanitize_global_setting( $value, $key, $filter_keys ) {
423 203 if ( 'custom_css' === $key ) {
424 - if ( false === $value ) {
425 - // Avoid changing the false default value to an empty string.
426 - return $value;
427 - }
428 -
429 204 return sanitize_textarea_field( $value );
430 205 }
431 206
432 207 if ( in_array( $key, $filter_keys, true ) ) {
@@ -435,36 +210,29 @@
435 210
436 211 return $value;
437 212 }
438 213
439 - /**
440 - * @return void
441 - */
442 214 private function fill_captcha_settings() {
443 215 if ( ! isset( $this->active_captcha ) ) {
444 216 $this->active_captcha = 'recaptcha';
445 217 }
446 218
447 - $privkey = '';
448 - $re_lang = '';
219 + $privkey = '';
220 + $re_lang = '';
449 221
450 222 if ( ! isset( $this->hcaptcha_privkey ) ) {
451 223 $this->hcaptcha_privkey = '';
452 224 }
453 225
454 - if ( ! isset( $this->turnstile_privkey ) ) {
455 - $this->turnstile_privkey = '';
456 - }
457 -
458 226 if ( ! isset( $this->pubkey ) ) {
459 - // Get the options from the database.
227 + // get the options from the database
460 228 $recaptcha_opt = is_multisite() ? get_site_option( 'recaptcha' ) : get_option( 'recaptcha' );
461 - $this->pubkey = $recaptcha_opt['pubkey'] ?? '';
462 - $privkey = $recaptcha_opt['privkey'] ?? $privkey;
463 - $re_lang = $recaptcha_opt['re_lang'] ?? $re_lang;
229 + $this->pubkey = isset( $recaptcha_opt['pubkey'] ) ? $recaptcha_opt['pubkey'] : '';
230 + $privkey = isset( $recaptcha_opt['privkey'] ) ? $recaptcha_opt['privkey'] : $privkey;
231 + $re_lang = isset( $recaptcha_opt['re_lang'] ) ? $recaptcha_opt['re_lang'] : $re_lang;
464 232 }
465 233
466 - if ( ! $this->re_msg ) {
234 + if ( ! isset( $this->re_msg ) || empty( $this->re_msg ) ) {
467 235 $this->re_msg = __( 'The CAPTCHA was not entered correctly', 'formidable' );
468 236 }
469 237
470 238 if ( ! isset( $this->privkey ) ) {
@@ -487,10 +255,8 @@
487 255 /**
488 256 * Get values that may be shown on the front-end without an override in the form settings.
489 257 *
490 258 * @since 3.06.01
491 - *
492 - * @return string[]
493 259 */
494 260 public function translatable_strings() {
495 261 return array(
496 262 'invalid_msg',
@@ -503,41 +269,23 @@
503 269 /**
504 270 * Allow strings to be filtered when a specific form may be displaying them.
505 271 *
506 272 * @since 3.06.01
507 - *
508 - * @param array $args
509 - *
510 - * @return void
511 273 */
512 274 public function maybe_filter_for_form( $args ) {
513 - if ( ! isset( $args['current_form'] ) || ! is_numeric( $args['current_form'] ) ) {
514 - return;
275 + if ( isset( $args['current_form'] ) && is_numeric( $args['current_form'] ) ) {
276 + $this->current_form = $args['current_form'];
277 + foreach ( $this->translatable_strings() as $string ) {
278 + $this->{$string} = apply_filters( 'frm_global_setting', $this->{$string}, $string, $this );
279 + $this->{$string} = apply_filters( 'frm_global_' . $string, $this->{$string}, $this );
280 + }
515 281 }
516 -
517 - $this->current_form = $args['current_form'];
518 -
519 - foreach ( $this->translatable_strings() as $string ) {
520 - $this->{$string} = apply_filters( 'frm_global_setting', $this->{$string}, $string, $this );
521 - $this->{$string} = apply_filters( 'frm_global_' . $string, $this->{$string}, $this );
522 - }
523 282 }
524 283
525 - /**
526 - * @param array $params
527 - * @param array $errors
528 - *
529 - * @return array
530 - */
531 284 public function validate( $params, $errors ) {
532 285 return apply_filters( 'frm_validate_settings', $errors, $params );
533 286 }
534 287
535 - /**
536 - * @param array $params
537 - *
538 - * @return void
539 - */
540 288 public function update( $params ) {
541 289 $this->fill_with_defaults( $params );
542 290 $this->update_settings( $params );
543 291
@@ -550,81 +298,48 @@
550 298 $this->update_roles( $params );
551 299
552 300 do_action( 'frm_update_settings', $params );
553 301
554 - if ( ! function_exists( 'get_filesystem_method' ) ) {
555 - return;
302 + if ( function_exists( 'get_filesystem_method' ) ) {
303 + // Save styling settings in case fallback setting changes.
304 + $frm_style = new FrmStyle();
305 + $frm_style->update( 'default' );
556 306 }
557 -
558 - // Save styling settings in case fallback setting changes.
559 - $frm_style = new FrmStyle();
560 - $frm_style->update( 'default' );
561 307 }
562 308
563 - /**
564 - * @param array $params
565 - *
566 - * @return void
567 - */
568 309 private function update_settings( $params ) {
569 - $this->active_captcha = $params['frm_active_captcha'];
570 - $this->pubkey = trim( $params['frm_pubkey'] );
571 - $this->privkey = trim( $params['frm_privkey'] );
572 - $this->re_type = $params['frm_re_type'];
573 - $this->re_lang = $params['frm_re_lang'];
574 - $this->re_threshold = floatval( $params['frm_re_threshold'] );
575 - $this->hcaptcha_pubkey = trim( $params['frm_hcaptcha_pubkey'] );
576 - $this->hcaptcha_privkey = trim( $params['frm_hcaptcha_privkey'] );
577 - $this->turnstile_pubkey = trim( $params['frm_turnstile_pubkey'] );
578 - $this->turnstile_privkey = trim( $params['frm_turnstile_privkey'] );
579 - $this->load_style = $params['frm_load_style'];
580 - $this->custom_css = $params['frm_custom_css'];
581 - $this->default_email = $params['frm_default_email'];
582 - $this->from_email = $params['frm_from_email'];
583 - $this->currency = $params['frm_currency'];
310 + $this->active_captcha = $params['frm_active_captcha'];
311 + $this->hcaptcha_pubkey = trim( $params['frm_hcaptcha_pubkey'] );
312 + $this->hcaptcha_privkey = $params['frm_hcaptcha_privkey'];
313 + $this->pubkey = trim( $params['frm_pubkey'] );
314 + $this->privkey = $params['frm_privkey'];
315 + $this->re_type = $params['frm_re_type'];
316 + $this->re_lang = $params['frm_re_lang'];
317 + $this->re_threshold = floatval( $params['frm_re_threshold'] );
318 + $this->load_style = $params['frm_load_style'];
319 + $this->custom_css = $params['frm_custom_css'];
584 320
585 - $checkboxes = array(
586 - 'mu_menu',
587 - 're_multi',
588 - 'fade_form',
589 - 'no_ips',
590 - 'no_gdpr_cookies',
591 - 'enable_gdpr',
592 - 'custom_header_ip',
593 - 'tracking',
594 - 'admin_bar',
595 - 'summary_emails',
596 - 'honeypot',
597 - 'wp_spam_check',
598 - 'denylist_check',
599 - );
600 -
321 + $checkboxes = array( 'mu_menu', 're_multi', 'use_html', 'jquery_css', 'accordion_js', 'fade_form', 'no_ips', 'tracking', 'admin_bar' );
601 322 foreach ( $checkboxes as $set ) {
602 - $this->$set = isset( $params[ 'frm_' . $set ] ) ? absint( $params[ 'frm_' . $set ] ) : 0;
323 + $this->$set = isset( $params[ 'frm_' . $set ] ) ? $params[ 'frm_' . $set ] : 0;
603 324 }
604 325 }
605 326
606 - /**
607 - * @param array $params
608 - *
609 - * @return void
610 - */
611 327 private function update_roles( $params ) {
612 328 global $wp_roles;
613 329
614 330 $frm_roles = FrmAppHelper::frm_capabilities();
615 331 $roles = get_editable_roles();
616 -
617 332 foreach ( $frm_roles as $frm_role => $frm_role_description ) {
618 - $this->$frm_role = (array) ( $params[ $frm_role ] ?? 'administrator' );
333 + $this->$frm_role = (array) ( isset( $params[ $frm_role ] ) ? $params[ $frm_role ] : 'administrator' );
619 334
620 335 // Make sure administrators always have permissions
621 - if ( ! in_array( 'administrator', $this->$frm_role, true ) ) {
336 + if ( ! in_array( 'administrator', $this->$frm_role ) ) {
622 337 array_push( $this->$frm_role, 'administrator' );
623 338 }
624 339
625 340 foreach ( $roles as $role => $details ) {
626 - if ( in_array( $role, $this->$frm_role, true ) ) {
341 + if ( in_array( $role, $this->$frm_role ) ) {
627 342 $wp_roles->add_cap( $role, $frm_role );
628 343 } else {
629 344 $wp_roles->remove_cap( $role, $frm_role );
630 345 }
@@ -631,35 +346,8 @@
631 346 }
632 347 }
633 348 }
634 349
635 - /**
636 - * Updates a single setting with specified sanitization.
637 - *
638 - * @since 6.9
639 - *
640 - * @param string $key The setting key to update.
641 - * @param mixed $value The new value for the setting.
642 - * @param string $sanitize The name of the sanitization function to apply to the new value.
643 - *
644 - * @return bool True on success, false on failure.
645 - */
646 - public function update_setting( $key, $value, $sanitize ) {
647 - if ( ! property_exists( $this, $key ) || ! is_callable( $sanitize ) ) {
648 - // Setting does not exist or sanitization function name is not callable.
649 - return false;
650 - }
651 -
652 - // Update the property value.
653 - FrmAppHelper::sanitize_value( $sanitize, $value );
654 - $this->{$key} = $value;
655 -
656 - return true;
657 - }
658 -
659 - /**
660 - * @return void
661 - */
662 350 public function store() {
663 351 // Save the posted value in the database
664 352
665 353 update_option( 'frm_options', $this );