PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.19
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.19
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/FrmUsage.php +2 -9 6.25.16.19 View file →
@@ -95,9 +95,8 @@
95 95 'fields' => $this->fields(),
96 96 'actions' => $this->actions(),
97 97
98 98 'onboarding-wizard' => $this->onboarding_wizard(),
99 - 'welcome-tour' => FrmWelcomeTourController::get_usage_data(),
100 99 'flows' => FrmUsageController::get_flows_data(),
101 100 'payments' => $this->payments(),
102 101 'subscriptions' => $this->payments( 'frm_subscriptions' ),
103 102 );
@@ -213,19 +212,13 @@
213 212 'menu',
214 213 'mu_menu',
215 214 'no_ips',
216 215 'custom_header_ip',
217 - 'enable_gdpr',
218 - 'no_gdpr_cookies',
219 216 'btsp_css',
220 217 'btsp_version',
221 218 'admin_bar',
222 219 'summary_emails',
223 220 'active_captcha',
224 - 'honeypot',
225 - 'wp_spam_check',
226 - 'denylist_check',
227 - 'email_style',
228 221 );
229 222
230 223 foreach ( $pass_settings as $setting ) {
231 224 if ( isset( $settings_list->$setting ) ) {
@@ -309,10 +302,10 @@
309 302 $forms = array();
310 303 $settings = array(
311 304 'form_class',
312 305 'akismet',
306 + 'honeypot',
313 307 'antispam',
314 - 'stopforumspam',
315 308 'custom_style',
316 309 'success_action',
317 310 'show_form',
318 311 'no_save',
@@ -427,9 +420,9 @@
427 420 'limit' => 50,
428 421 'order_by' => 'id DESC',
429 422 );
430 423
431 - $fields = FrmDb::get_results( 'frm_fields', array(), 'id, form_id, name, type, field_options', $args );
424 + $fields = FrmDb::get_results( 'frm_fields', array(), 'form_id, name, type, field_options', $args );
432 425 foreach ( $fields as $k => $field ) {
433 426 FrmAppHelper::unserialize_or_decode( $field->field_options );
434 427 $fields[ $k ]->field_options = json_encode( $field->field_options );
435 428 }