PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.8
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.8
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/FrmMigrate.php +53 -294 6.356.8 View file →
@@ -3,46 +3,21 @@
3 3 die( 'You are not allowed to call this page directly.' );
4 4 }
5 5
6 6 class FrmMigrate {
7 -
8 - /**
9 - * @var string
10 - */
11 7 public $fields;
12 -
13 - /**
14 - * @var string
15 - */
16 8 public $forms;
17 -
18 - /**
19 - * @var string
20 - */
21 9 public $entries;
22 -
23 - /**
24 - * @var string
25 - */
26 10 public $entry_metas;
27 11
28 - /**
29 - * @var string
30 - */
31 - public $gated_tokens;
32 -
33 12 public function __construct() {
34 13 global $wpdb;
35 - $this->fields = $wpdb->prefix . 'frm_fields';
36 - $this->forms = $wpdb->prefix . 'frm_forms';
37 - $this->entries = $wpdb->prefix . 'frm_items';
38 - $this->entry_metas = $wpdb->prefix . 'frm_item_metas';
39 - $this->gated_tokens = $wpdb->prefix . 'frm_gated_tokens';
14 + $this->fields = $wpdb->prefix . 'frm_fields';
15 + $this->forms = $wpdb->prefix . 'frm_forms';
16 + $this->entries = $wpdb->prefix . 'frm_items';
17 + $this->entry_metas = $wpdb->prefix . 'frm_item_metas';
40 18 }
41 19
42 - /**
43 - * @return void
44 - */
45 20 public function upgrade() {
46 21 do_action( 'frm_before_install' );
47 22
48 23 global $wpdb, $frm_vars;
@@ -57,20 +32,17 @@
57 32 )
58 33 );
59 34
60 35 if ( $needs_upgrade ) {
61 - $this->maybe_delete_htaccess_file();
62 -
63 - // Update rewrite rules for views and other custom post types
36 + // update rewrite rules for views and other custom post types
64 37 flush_rewrite_rules();
65 38
66 - require_once ABSPATH . 'wp-admin/includes/upgrade.php';
39 + require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
67 40
68 41 $old_db_version = get_option( 'frm_db_version' );
69 42
70 43 $this->create_tables();
71 44 $this->migrate_data( $old_db_version );
72 - $this->check_that_tables_exist();
73 45
74 46 // SAVE DB VERSION.
75 47 update_option( 'frm_db_version', FrmAppHelper::plugin_version() . '-' . FrmAppHelper::$db_version );
76 48
@@ -75,16 +47,10 @@
75 47 update_option( 'frm_db_version', FrmAppHelper::plugin_version() . '-' . FrmAppHelper::$db_version );
76 48
77 49 if ( ! $old_db_version ) {
78 50 $this->maybe_create_contact_form();
79 -
80 - if ( false === get_option( 'frm_first_activation' ) ) {
81 - update_option( 'frm_first_activation', time(), false );
82 - }
83 -
84 - $this->update_settings_for_new_install();
85 51 }
86 - }//end if
52 + }
87 53
88 54 do_action( 'frm_after_install' );
89 55
90 56 $frm_vars['doing_upgrade'] = false;
@@ -90,97 +56,24 @@
90 56 $frm_vars['doing_upgrade'] = false;
91 57
92 58 FrmAppHelper::save_combined_js();
93 59
94 - // Update the styling settings
95 - if ( ! function_exists( 'get_filesystem_method' ) ) {
96 - return;
60 + // update the styling settings
61 + if ( function_exists( 'get_filesystem_method' ) ) {
62 + $frm_style = new FrmStyle();
63 + $frm_style->update( 'default' );
97 64 }
98 -
99 - $frm_style = new FrmStyle();
100 - $frm_style->update( 'default' );
101 65 }
102 66
103 - /**
104 - * Check if the .htaccess file should be deleted based on server response.
105 - * If a server has AllowOverride FileInfo but not AllowOverride AuthConfig, JS and CSS files
106 - * will result in a 500 error.
107 - *
108 - * @since 6.27
109 - *
110 - * @return void
111 - */
112 - private function maybe_delete_htaccess_file() {
113 - $css_file_request = wp_remote_get( FrmAppHelper::plugin_url() . '/css/frm_fonts.css' );
114 -
115 - if ( 200 === wp_remote_retrieve_response_code( $css_file_request ) ) {
116 - return;
117 - }
118 -
119 - $htaccess_path = FrmAppHelper::plugin_path() . '/.htaccess';
120 -
121 - if ( file_exists( $htaccess_path ) ) {
122 - wp_delete_file( $htaccess_path );
123 - }
124 - }
125 -
126 - /**
127 - * Updates some settings for new installs.
128 - *
129 - * @since 6.23
130 - *
131 - * @return void
132 - */
133 - private function update_settings_for_new_install() {
134 - $settings = FrmAppHelper::get_settings();
135 -
136 - $settings->denylist_check = 1;
137 - $settings->installed_after_welcome_tour_update = 1;
138 - $settings->store();
139 - }
140 -
141 - /**
142 - * If we fail to create the database tables, add an inbox notice.
143 - * This informs the user that they need to correct the issue and try again.
144 - *
145 - * @since 6.19
146 - *
147 - * @return void
148 - */
149 - private function check_that_tables_exist() {
150 - // Check the DB that the table $this->forms exists.
67 + public function collation() {
151 68 global $wpdb;
152 - $exists = $wpdb->get_results( $wpdb->prepare( 'SHOW TABLES LIKE %s', $this->forms ) );
153 -
154 - if ( $exists ) {
155 - $inbox = new FrmInbox();
156 - $inbox->dismiss( 'failed-to-create-tables' );
157 - return;
69 + if ( ! $wpdb->has_cap( 'collation' ) ) {
70 + return '';
158 71 }
159 72
160 - $message = array(
161 - 'key' => 'failed-to-create-tables',
162 - 'subject' => 'Something went wrong setting up the database',
163 - 'message' => 'For steps to continue, see our <a href="https://formidableforms.com/knowledgebase/install-formidable-forms/#kb-missing-database-tables" target="_blank" rel="noopener">documentation</a>. If you need assistance, we recommend that you reach out to your hosting provider. Then <a href="' . esc_url( admin_url( 'admin.php?page=formidable&frm_add_tables=1' ) ) . '">click here</a> to try again.', // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
164 - 'cta' => '<a href="https://formidableforms.com/knowledgebase/install-formidable-forms/#kb-missing-database-tables" target="_blank" rel="noopener">Learn More</a>', // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
165 - 'type' => 'error',
166 - );
167 -
168 - $inbox = new FrmInbox();
169 - $inbox->add_message( $message );
73 + return $wpdb->get_charset_collate();
170 74 }
171 75
172 - /**
173 - * @return string
174 - */
175 - public function collation() {
176 - global $wpdb;
177 - return $wpdb->has_cap( 'collation' ) ? $wpdb->get_charset_collate() : '';
178 - }
179 -
180 - /**
181 - * @return void
182 - */
183 76 private function create_tables() {
184 77 $charset_collate = $this->collation();
185 78 $sql = array();
186 79
@@ -255,25 +148,8 @@
255 148 KEY field_id (field_id),
256 149 KEY item_id (item_id)
257 150 )';
258 151
259 - /* Create/Upgrade Gated Tokens Table */
260 - $sql[] = 'CREATE TABLE ' . $this->gated_tokens . ' (
261 - id BIGINT UNSIGNED NOT NULL auto_increment,
262 - token_hash varchar(64) NOT NULL,
263 - action_id BIGINT UNSIGNED NOT NULL,
264 - entry_id BIGINT UNSIGNED NOT NULL,
265 - user_id BIGINT UNSIGNED default NULL,
266 - ip_address varchar(255) default NULL,
267 - created_at int UNSIGNED NOT NULL,
268 - expired_at int UNSIGNED default NULL,
269 - PRIMARY KEY (id),
270 - UNIQUE KEY token_hash (token_hash),
271 - KEY action_id (action_id),
272 - KEY user_id (user_id),
273 - KEY expired_at (expired_at)
274 - )';
275 -
276 152 foreach ( $sql as $q ) {
277 153 if ( function_exists( 'dbDelta' ) ) {
278 154 dbDelta( $q . $charset_collate . ';' );
279 155 } else {
@@ -289,10 +165,8 @@
289 165 /**
290 166 * These indexes help optimize database queries for entries.
291 167 *
292 168 * @since 6.6
293 - * @since 6.16.3 idx_form_id_is_draft was also added to frm_items.
294 - * @since 6.17 idx_form_id_type was also added to frm_fields.
295 169 *
296 170 * @return void
297 171 */
298 172 private function add_composite_indexes_for_entries() {
@@ -310,22 +184,8 @@
310 184
311 185 if ( ! self::index_exists( $table_name, $index_name ) ) {
312 186 $wpdb->query( "CREATE INDEX idx_field_id_item_id ON `{$wpdb->prefix}frm_item_metas` (field_id, item_id)" );
313 187 }
314 -
315 - $table_name = "{$wpdb->prefix}frm_items";
316 - $index_name = 'idx_form_id_is_draft';
317 -
318 - if ( ! self::index_exists( $table_name, $index_name ) ) {
319 - $wpdb->query( "CREATE INDEX idx_form_id_is_draft ON `{$wpdb->prefix}frm_items` (form_id, is_draft)" );
320 - }
321 -
322 - $table_name = "{$wpdb->prefix}frm_fields";
323 - $index_name = 'idx_form_id_type';
324 -
325 - if ( ! self::index_exists( $table_name, $index_name ) ) {
326 - $wpdb->query( "CREATE INDEX idx_form_id_type ON `{$wpdb->prefix}frm_fields` (form_id, type(30))" );
327 - }
328 188 }
329 189
330 190 /**
331 191 * Check that an index exists in a database table before trying to add it (which results in an error).
@@ -333,9 +193,8 @@
333 193 * @since 6.6
334 194 *
335 195 * @param string $table_name
336 196 * @param string $index_name
337 - *
338 197 * @return bool
339 198 */
340 199 private static function index_exists( $table_name, $index_name ) {
341 200 global $wpdb;
@@ -351,14 +210,10 @@
351 210 );
352 211 return (bool) $row;
353 212 }
354 213
355 - /**
356 - * @return void
357 - */
358 214 private function maybe_create_contact_form() {
359 215 $form_exists = FrmForm::get_id_by_key( 'contact-form' );
360 -
361 216 if ( ! $form_exists ) {
362 217 $this->add_default_template();
363 218 }
364 219 }
@@ -366,10 +221,8 @@
366 221 /**
367 222 * Create the default contact form
368 223 *
369 224 * @since 3.06
370 - *
371 - * @return void
372 225 */
373 226 private function add_default_template() {
374 227 if ( FrmXMLHelper::check_if_libxml_disable_entity_loader_exists() ) {
375 228 // XML import is not enabled on your server.
@@ -377,9 +230,10 @@
377 230 }
378 231
379 232 $set_err = libxml_use_internal_errors( true );
380 233 $loader = FrmXMLHelper::maybe_libxml_disable_entity_loader( true );
381 - $file = FrmAppHelper::plugin_path() . '/classes/views/xml/default-templates.xml';
234 +
235 + $file = FrmAppHelper::plugin_path() . '/classes/views/xml/default-templates.xml';
382 236 FrmXMLHelper::import_xml( $file );
383 237
384 238 libxml_use_internal_errors( $set_err );
385 239 FrmXMLHelper::maybe_libxml_disable_entity_loader( $loader );
@@ -386,41 +240,32 @@
386 240 }
387 241
388 242 /**
389 243 * @param int|string $old_db_version
390 - *
391 - * @return void
392 244 */
393 245 private function migrate_data( $old_db_version ) {
394 246 if ( ! $old_db_version ) {
395 247 $old_db_version = get_option( 'frm_db_version' );
396 248 }
397 -
398 - if ( str_contains( $old_db_version, '-' ) ) {
249 + if ( strpos( $old_db_version, '-' ) ) {
399 250 $last_upgrade = explode( '-', $old_db_version );
400 - $old_db_version = intval( end( $last_upgrade ) );
251 + $old_db_version = (int) $last_upgrade[1];
401 252 }
402 253
403 254 if ( ! is_numeric( $old_db_version ) ) {
404 - // Bail if we don't know the previous version
255 + // bail if we don't know the previous version
405 256 return;
406 257 }
407 258
408 - $migrations = array( 16, 11, 16, 17, 23, 25, 86, 90, 97, 98, 101, 104, 105 );
409 -
259 + $migrations = array( 16, 11, 16, 17, 23, 25, 86, 90, 97, 98, 101 );
410 260 foreach ( $migrations as $migration ) {
411 - if ( FrmAppHelper::$db_version < $migration || $old_db_version >= $migration ) {
412 - continue;
261 + if ( FrmAppHelper::$db_version >= $migration && $old_db_version < $migration ) {
262 + $function_name = 'migrate_to_' . $migration;
263 + $this->$function_name();
413 264 }
414 -
415 - $function_name = 'migrate_to_' . $migration;
416 - $this->$function_name();
417 265 }
418 266 }
419 267
420 - /**
421 - * @return bool
422 - */
423 268 public function uninstall() {
424 269 if ( ! current_user_can( 'administrator' ) ) {
425 270 $frm_settings = FrmAppHelper::get_settings();
426 271 wp_die( esc_html( $frm_settings->admin_permission ) );
@@ -431,9 +276,8 @@
431 276 $wpdb->query( 'DROP TABLE IF EXISTS ' . $this->fields ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
432 277 $wpdb->query( 'DROP TABLE IF EXISTS ' . $this->forms ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
433 278 $wpdb->query( 'DROP TABLE IF EXISTS ' . $this->entries ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
434 279 $wpdb->query( 'DROP TABLE IF EXISTS ' . $this->entry_metas ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
435 - $wpdb->query( 'DROP TABLE IF EXISTS ' . $this->gated_tokens ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
436 280
437 281 delete_option( 'frm_options' );
438 282 delete_option( 'frm_db_version' );
439 283 delete_option( 'frm_install_running' );
@@ -440,15 +284,14 @@
440 284 delete_option( 'frm_lite_settings_upgrade' );
441 285 delete_option( 'frm-usage-uuid' );
442 286 delete_option( 'frm_inbox' );
443 287 delete_option( 'frmpro_css' );
444 - delete_option( FrmOnboardingWizardController::REDIRECT_STATUS_OPTION );
288 + delete_option( 'frm_welcome_redirect' );
445 289 delete_option( FrmEmailSummaryHelper::$option_name );
446 290
447 291 // Delete roles.
448 292 $frm_roles = FrmAppHelper::frm_capabilities();
449 293 $roles = get_editable_roles();
450 -
451 294 foreach ( $frm_roles as $frm_role => $frm_role_description ) {
452 295 foreach ( $roles as $role => $details ) {
453 296 $wp_roles->remove_cap( $role, $frm_role );
454 297 unset( $role, $details );
@@ -456,16 +299,15 @@
456 299 unset( $frm_role, $frm_role_description );
457 300 }
458 301 unset( $roles, $frm_roles );
459 302
460 - // Delete actions, views, and styles
303 + // delete actions, views, and styles
461 304
462 - // Prevent the post deletion from triggering entries to be deleted
305 + // prevent the post deletion from triggering entries to be deleted
463 306 remove_action( 'before_delete_post', 'FrmProDisplaysController::before_delete_post' );
464 307 remove_action( 'deleted_post', 'FrmProEntriesController::delete_entry' );
465 308
466 - $post_ids = $wpdb->get_col( $wpdb->prepare( 'SELECT ID FROM ' . $wpdb->posts . ' WHERE post_type in (%s, %s, %s)', FrmFormActionsController::$action_post_type, FrmStylesController::$post_type, 'frm_display' ) ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
467 -
309 + $post_ids = $wpdb->get_col( $wpdb->prepare( 'SELECT ID FROM ' . $wpdb->posts . ' WHERE post_type in (%s, %s, %s)', FrmFormActionsController::$action_post_type, FrmStylesController::$post_type, 'frm_display' ) );
468 310 foreach ( $post_ids as $post_id ) {
469 311 // Delete's each post.
470 312 wp_delete_post( $post_id, true );
471 313 }
@@ -470,15 +312,15 @@
470 312 wp_delete_post( $post_id, true );
471 313 }
472 314 unset( $post_ids );
473 315
474 - // Delete transients
316 + // delete transients
475 317 delete_transient( 'frmpro_css' );
476 318 delete_transient( 'frm_options' );
477 319 delete_transient( 'frmpro_options' );
478 - delete_transient( FrmOnboardingWizardController::TRANSIENT_NAME );
320 + delete_transient( 'frm_activation_redirect' );
479 321
480 - $wpdb->query( $wpdb->prepare( 'DELETE FROM ' . $wpdb->options . ' WHERE option_name LIKE %s OR option_name LIKE %s', '_transient_timeout_frm_form_fields_%', '_transient_frm_form_fields_%' ) ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
322 + $wpdb->query( $wpdb->prepare( 'DELETE FROM ' . $wpdb->options . ' WHERE option_name LIKE %s OR option_name LIKE %s', '_transient_timeout_frm_form_fields_%', '_transient_frm_form_fields_%' ) );
481 323
482 324 do_action( 'frm_after_uninstall' );
483 325
484 326 return true;
@@ -484,44 +326,11 @@
484 326 return true;
485 327 }
486 328
487 329 /**
488 - * In older versions of Lite, it's possible we've saved the wrong location ID.
489 - * So force it to get valid values again.
490 - *
491 - * @since 6.25
492 - *
493 - * @return void
494 - */
495 - private function migrate_to_104() {
496 - if ( FrmSquareLiteConnectHelper::get_merchant_id( 'test' ) ) {
497 - FrmSquareLiteConnectHelper::get_location_id( true, 'test' );
498 - }
499 -
500 - if ( FrmSquareLiteConnectHelper::get_merchant_id( 'live' ) ) {
501 - FrmSquareLiteConnectHelper::get_location_id( true, 'live' );
502 - }
503 - }
504 -
505 - /**
506 - * Add new wp_options row for custom setting.
507 - *
508 - * @since 6.26
509 - *
510 - * @return void
511 - */
512 - private function migrate_to_105() {
513 - if ( ! FrmAppHelper::pro_is_installed() ) {
514 - update_option( 'frm_show_pricing_fields_modal', 1, false );
515 - }
516 - }
517 -
518 - /**
519 330 * Disables summary email for multisite (not the main site) if recipient setting isn't changed.
520 331 *
521 332 * @since 6.8
522 - *
523 - * @return void
524 333 */
525 334 private function migrate_to_101() {
526 335 if ( ! is_multisite() || get_main_site_id() === get_current_blog_id() ) {
527 336 return;
@@ -527,9 +336,8 @@
527 336 return;
528 337 }
529 338
530 339 $frm_settings = FrmAppHelper::get_settings();
531 -
532 340 if ( empty( $frm_settings->summary_emails ) || '[admin_email]' !== $frm_settings->summary_emails_recipients ) {
533 341 // User changed it.
534 342 return;
535 343 }
@@ -541,10 +349,8 @@
541 349 /**
542 350 * Clear frmpro_css transient.
543 351 *
544 352 * @since 4.10.02
545 - *
546 - * @return void
547 353 */
548 354 private function migrate_to_98() {
549 355 delete_transient( 'frmpro_css' );
550 356 }
@@ -552,10 +358,8 @@
552 358 /**
553 359 * Move default_blank and clear_on_focus to placeholder.
554 360 *
555 361 * @since 4.0
556 - *
557 - * @return void
558 362 */
559 363 private function migrate_to_97() {
560 364 $this->migrate_to_placeholder( 'clear_on_focus' );
561 365 $this->migrate_to_placeholder( 'default_blank' );
@@ -564,12 +368,8 @@
564 368 /**
565 369 * Move clear_on_focus or default_blank to placeholder.
566 370 *
567 371 * @since 4.0
568 - *
569 - * @param string $type Field option key to migrate.
570 - *
571 - * @return void
572 372 */
573 373 private function migrate_to_placeholder( $type = 'clear_on_focus' ) {
574 374 $query = array(
575 375 'field_options like' => '"' . $type . '";s:1:"1";',
@@ -580,10 +380,9 @@
580 380 foreach ( $fields as $field ) {
581 381 FrmAppHelper::unserialize_or_decode( $field->field_options );
582 382 FrmAppHelper::unserialize_or_decode( $field->options );
583 383 $update_values = FrmXMLHelper::migrate_field_placeholder( $field, $type );
584 -
585 - if ( ! $update_values ) {
384 + if ( empty( $update_values ) ) {
586 385 continue;
587 386 }
588 387
589 388 FrmField::update( $field->id, $update_values );
@@ -591,18 +390,14 @@
591 390 }
592 391 }
593 392
594 393 /**
595 - * Delete unneeded default templates
394 + * Delete uneeded default templates
596 395 *
597 396 * @since 3.06
598 - *
599 - * @return void
600 397 */
601 398 private function migrate_to_90() {
602 399 $form = FrmForm::getOne( 'contact' );
603 -
604 - // phpcs:ignore Universal.Operators.StrictComparisons
605 400 if ( $form && $form->default_template == 1 ) {
606 401 FrmForm::destroy( 'contact' );
607 402 }
608 403 }
@@ -610,17 +405,16 @@
610 405 /**
611 406 * Reverse migration 17 -- Divide by 9
612 407 *
613 408 * @since 3.0.05
614 - *
615 - * @return void
616 409 */
617 410 private function migrate_to_86() {
411 +
618 412 $fields = $this->get_fields_with_size();
619 413
620 - foreach ( $fields as $f ) {
414 + foreach ( (array) $fields as $f ) {
621 415 FrmAppHelper::unserialize_or_decode( $f->field_options );
622 - $size = $f->field_options['size'];
416 + $size = $f->field_options['size'];
623 417 $this->maybe_convert_migrated_size( $size );
624 418
625 419 if ( $size === $f->field_options['size'] ) {
626 420 continue;
@@ -630,12 +424,11 @@
630 424 FrmField::update( $f->id, array( 'field_options' => $f->field_options ) );
631 425 unset( $f );
632 426 }
633 427
634 - // Reverse the extra size changes in widgets
428 + // reverse the extra size changes in widgets
635 429 $widgets = get_option( 'widget_frm_show_form' );
636 -
637 - if ( ! $widgets ) {
430 + if ( empty( $widgets ) ) {
638 431 return;
639 432 }
640 433
641 434 $this->revert_widget_field_size();
@@ -640,11 +433,8 @@
640 433
641 434 $this->revert_widget_field_size();
642 435 }
643 436
644 - /**
645 - * @return array
646 - */
647 437 private function get_fields_with_size() {
648 438 $field_types = array(
649 439 'textarea',
650 440 'text',
@@ -672,20 +462,16 @@
672 462 /**
673 463 * Reverse the extra size changes in widgets
674 464 *
675 465 * @since 3.0.05
676 - *
677 - * @return void
678 466 */
679 467 private function revert_widget_field_size() {
680 468 $widgets = get_option( 'widget_frm_show_form' );
681 -
682 - if ( ! $widgets ) {
469 + if ( empty( $widgets ) ) {
683 470 return;
684 471 }
685 472
686 473 FrmAppHelper::unserialize_or_decode( $widgets );
687 -
688 474 foreach ( $widgets as $k => $widget ) {
689 475 if ( ! is_array( $widget ) || ! isset( $widget['size'] ) ) {
690 476 continue;
691 477 }
@@ -691,9 +477,8 @@
691 477 }
692 478
693 479 $this->maybe_convert_migrated_size( $widgets[ $k ]['size'] );
694 480 }
695 -
696 481 update_option( 'widget_frm_show_form', $widgets );
697 482 }
698 483
699 484 /**
@@ -699,28 +484,23 @@
699 484 /**
700 485 * Divide by 9 to reverse the multiplication
701 486 *
702 487 * @since 3.0.05
703 - *
704 - * @param string $size Size string to maybe convert, passed by reference.
705 - *
706 - * @return void
707 488 */
708 489 private function maybe_convert_migrated_size( &$size ) {
709 - $has_px_size = $size && str_contains( $size, 'px' );
710 -
490 + $has_px_size = ! empty( $size ) && strpos( $size, 'px' );
711 491 if ( ! $has_px_size ) {
712 492 return;
713 493 }
714 494
715 495 $int_size = str_replace( 'px', '', $size );
716 -
717 496 if ( ! is_numeric( $int_size ) || (int) $int_size < 900 ) {
718 497 return;
719 498 }
720 499
721 500 $pixel_conversion = 9;
722 - $size = round( (int) $int_size / $pixel_conversion );
501 +
502 + $size = round( (int) $int_size / $pixel_conversion );
723 503 }
724 504
725 505 /**
726 506 * Migrate old styling settings. If sites are using the old
@@ -726,22 +506,19 @@
726 506 * Migrate old styling settings. If sites are using the old
727 507 * default 400px field width, switch it to 100%
728 508 *
729 509 * @since 2.0.4
730 - *
731 - * @return void
732 510 */
733 511 private function migrate_to_25() {
734 - // Get the style that was created with the style migration
512 + // get the style that was created with the style migration
735 513 $frm_style = new FrmStyle();
736 514 $styles = $frm_style->get_all( 'post_date', 'ASC', 1 );
737 -
738 - if ( ! $styles ) {
515 + if ( empty( $styles ) ) {
739 516 return;
740 517 }
741 518
742 519 foreach ( $styles as $style ) {
743 - if ( $style->post_content['field_width'] === '400px' ) {
520 + if ( $style->post_content['field_width'] == '400px' ) {
744 521 $style->post_content['field_width'] = '100%';
745 522 $frm_style->save( (array) $style );
746 523
747 524 return;
@@ -753,16 +530,13 @@
753 530 * Check if the parent_form_id columns exists.
754 531 * If not, try and add it again
755 532 *
756 533 * @since 2.0.2
757 - *
758 - * @return void
759 534 */
760 535 private function migrate_to_23() {
761 536 global $wpdb;
762 537 $exists = $wpdb->get_row( 'SHOW COLUMNS FROM ' . $this->forms . ' LIKE "parent_form_id"' ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
763 -
764 - if ( ! $exists ) {
538 + if ( empty( $exists ) ) {
765 539 $wpdb->query( 'ALTER TABLE ' . $this->forms . ' ADD parent_form_id int(11) default 0' ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
766 540 }
767 541 }
768 542
@@ -767,10 +541,8 @@
767 541 }
768 542
769 543 /**
770 544 * Change field size from character to pixel -- Multiply by 9
771 - *
772 - * @return void
773 545 */
774 546 private function migrate_to_17() {
775 547 $fields = $this->get_fields_with_size();
776 548
@@ -775,9 +547,8 @@
775 547 $fields = $this->get_fields_with_size();
776 548
777 549 foreach ( $fields as $f ) {
778 550 FrmAppHelper::unserialize_or_decode( $f->field_options );
779 -
780 551 if ( empty( $f->field_options['size'] ) || ! is_numeric( $f->field_options['size'] ) ) {
781 552 continue;
782 553 }
783 554
@@ -791,20 +562,16 @@
791 562 }
792 563
793 564 /**
794 565 * Change the characters in widgets to pixels
795 - *
796 - * @return void
797 566 */
798 567 private function adjust_widget_size() {
799 568 $widgets = get_option( 'widget_frm_show_form' );
800 -
801 - if ( ! $widgets ) {
569 + if ( empty( $widgets ) ) {
802 570 return;
803 571 }
804 572
805 573 FrmAppHelper::unserialize_or_decode( $widgets );
806 -
807 574 foreach ( $widgets as $k => $widget ) {
808 575 if ( ! is_array( $widget ) || ! isset( $widget['size'] ) ) {
809 576 continue;
810 577 }
@@ -809,21 +576,15 @@
809 576 continue;
810 577 }
811 578 $this->convert_character_to_px( $widgets[ $k ]['size'] );
812 579 }
813 -
814 580 update_option( 'widget_frm_show_form', $widgets );
815 581 }
816 582
817 - /**
818 - * @param string $size
819 - *
820 - * @return void
821 - */
822 583 private function convert_character_to_px( &$size ) {
823 584 $pixel_conversion = 9;
824 585
825 - $size = round( $pixel_conversion * (int) $size );
586 + $size = round( $pixel_conversion * (int) $size );
826 587 $size .= 'px';
827 588 }
828 589
829 590 /**
@@ -862,9 +623,9 @@
862 623 * post_excerpt: message
863 624 */
864 625 foreach ( $forms as $form ) {
865 626 if ( $form->is_template && $form->default_template ) {
866 - // Don't migrate the default templates since the email will be added anyway
627 + // don't migrate the default templates since the email will be added anyway
867 628 continue;
868 629 }
869 630
870 631 // Format form options
@@ -878,9 +639,10 @@
878 639
879 640 private function migrate_to_11() {
880 641 global $wpdb;
881 642
882 - $forms = FrmDb::get_results( $this->forms, array(), 'id, options' );
643 + $forms = FrmDb::get_results( $this->forms, array(), 'id, options' );
644 +
883 645 $sending = __( 'Sending', 'formidable' );
884 646 $img = FrmAppHelper::plugin_url() . '/images/ajax_loader.gif';
885 647 $old_default_html = <<<DEFAULT_HTML
886 648 <div class="frm_submit">
@@ -892,21 +654,18 @@
892 654 unset( $sending, $img );
893 655
894 656 $new_default_html = FrmFormsHelper::get_default_html( 'submit' );
895 657 $draft_link = FrmFormsHelper::get_draft_link();
896 -
897 658 foreach ( $forms as $form ) {
898 659 FrmAppHelper::unserialize_or_decode( $form->options );
899 -
900 - if ( empty( $form->options['submit_html'] ) ) {
660 + if ( ! isset( $form->options['submit_html'] ) || empty( $form->options['submit_html'] ) ) {
901 661 continue;
902 662 }
903 663
904 - // phpcs:ignore Universal.Operators.StrictComparisons
905 664 if ( $form->options['submit_html'] != $new_default_html && $form->options['submit_html'] == $old_default_html ) {
906 665 $form->options['submit_html'] = $new_default_html;
907 666 $wpdb->update( $this->forms, array( 'options' => serialize( $form->options ) ), array( 'id' => $form->id ) );
908 - } elseif ( ! str_contains( $form->options['submit_html'], 'save_draft' ) ) {
667 + } elseif ( ! strpos( $form->options['submit_html'], 'save_draft' ) ) {
909 668 $form->options['submit_html'] = preg_replace( '~\<\/div\>(?!.*\<\/div\>)~', $draft_link . "\r\n</div>", $form->options['submit_html'] );
910 669 $wpdb->update( $this->forms, array( 'options' => serialize( $form->options ) ), array( 'id' => $form->id ) );
911 670 }
912 671 unset( $form );