PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.18
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.18
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 +44 -265 6.336.18 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,11 +32,9 @@
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 39 require_once ABSPATH . 'wp-admin/includes/upgrade.php';
67 40
@@ -68,9 +41,8 @@
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
@@ -79,10 +51,8 @@
79 51
80 52 if ( false === get_option( 'frm_first_activation' ) ) {
81 53 update_option( 'frm_first_activation', time(), false );
82 54 }
83 -
84 - $this->update_settings_for_new_install();
85 55 }
86 56 }//end if
87 57
88 58 do_action( 'frm_after_install' );
@@ -90,97 +60,24 @@
90 60 $frm_vars['doing_upgrade'] = false;
91 61
92 62 FrmAppHelper::save_combined_js();
93 63
94 - // Update the styling settings
95 - if ( ! function_exists( 'get_filesystem_method' ) ) {
96 - return;
64 + // update the styling settings
65 + if ( function_exists( 'get_filesystem_method' ) ) {
66 + $frm_style = new FrmStyle();
67 + $frm_style->update( 'default' );
97 68 }
98 -
99 - $frm_style = new FrmStyle();
100 - $frm_style->update( 'default' );
101 69 }
102 70
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.
71 + public function collation() {
151 72 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;
73 + if ( ! $wpdb->has_cap( 'collation' ) ) {
74 + return '';
158 75 }
159 76
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">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">Learn More</a>',
165 - 'type' => 'error',
166 - );
167 -
168 - $inbox = new FrmInbox();
169 - $inbox->add_message( $message );
77 + return $wpdb->get_charset_collate();
170 78 }
171 79
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 80 private function create_tables() {
184 81 $charset_collate = $this->collation();
185 82 $sql = array();
186 83
@@ -255,25 +152,8 @@
255 152 KEY field_id (field_id),
256 153 KEY item_id (item_id)
257 154 )';
258 155
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 156 foreach ( $sql as $q ) {
277 157 if ( function_exists( 'dbDelta' ) ) {
278 158 dbDelta( $q . $charset_collate . ';' );
279 159 } else {
@@ -333,9 +213,8 @@
333 213 * @since 6.6
334 214 *
335 215 * @param string $table_name
336 216 * @param string $index_name
337 - *
338 217 * @return bool
339 218 */
340 219 private static function index_exists( $table_name, $index_name ) {
341 220 global $wpdb;
@@ -351,14 +230,10 @@
351 230 );
352 231 return (bool) $row;
353 232 }
354 233
355 - /**
356 - * @return void
357 - */
358 234 private function maybe_create_contact_form() {
359 235 $form_exists = FrmForm::get_id_by_key( 'contact-form' );
360 -
361 236 if ( ! $form_exists ) {
362 237 $this->add_default_template();
363 238 }
364 239 }
@@ -366,10 +241,8 @@
366 241 /**
367 242 * Create the default contact form
368 243 *
369 244 * @since 3.06
370 - *
371 - * @return void
372 245 */
373 246 private function add_default_template() {
374 247 if ( FrmXMLHelper::check_if_libxml_disable_entity_loader_exists() ) {
375 248 // XML import is not enabled on your server.
@@ -377,9 +250,10 @@
377 250 }
378 251
379 252 $set_err = libxml_use_internal_errors( true );
380 253 $loader = FrmXMLHelper::maybe_libxml_disable_entity_loader( true );
381 - $file = FrmAppHelper::plugin_path() . '/classes/views/xml/default-templates.xml';
254 +
255 + $file = FrmAppHelper::plugin_path() . '/classes/views/xml/default-templates.xml';
382 256 FrmXMLHelper::import_xml( $file );
383 257
384 258 libxml_use_internal_errors( $set_err );
385 259 FrmXMLHelper::maybe_libxml_disable_entity_loader( $loader );
@@ -386,41 +260,32 @@
386 260 }
387 261
388 262 /**
389 263 * @param int|string $old_db_version
390 - *
391 - * @return void
392 264 */
393 265 private function migrate_data( $old_db_version ) {
394 266 if ( ! $old_db_version ) {
395 267 $old_db_version = get_option( 'frm_db_version' );
396 268 }
397 -
398 - if ( str_contains( $old_db_version, '-' ) ) {
269 + if ( strpos( $old_db_version, '-' ) ) {
399 270 $last_upgrade = explode( '-', $old_db_version );
400 - $old_db_version = intval( end( $last_upgrade ) );
271 + $old_db_version = (int) $last_upgrade[1];
401 272 }
402 273
403 274 if ( ! is_numeric( $old_db_version ) ) {
404 - // Bail if we don't know the previous version
275 + // bail if we don't know the previous version
405 276 return;
406 277 }
407 278
408 - $migrations = array( 16, 11, 16, 17, 23, 25, 86, 90, 97, 98, 101, 104, 105 );
409 -
279 + $migrations = array( 16, 11, 16, 17, 23, 25, 86, 90, 97, 98, 101 );
410 280 foreach ( $migrations as $migration ) {
411 - if ( FrmAppHelper::$db_version < $migration || $old_db_version >= $migration ) {
412 - continue;
281 + if ( FrmAppHelper::$db_version >= $migration && $old_db_version < $migration ) {
282 + $function_name = 'migrate_to_' . $migration;
283 + $this->$function_name();
413 284 }
414 -
415 - $function_name = 'migrate_to_' . $migration;
416 - $this->$function_name();
417 285 }
418 286 }
419 287
420 - /**
421 - * @return bool
422 - */
423 288 public function uninstall() {
424 289 if ( ! current_user_can( 'administrator' ) ) {
425 290 $frm_settings = FrmAppHelper::get_settings();
426 291 wp_die( esc_html( $frm_settings->admin_permission ) );
@@ -431,9 +296,8 @@
431 296 $wpdb->query( 'DROP TABLE IF EXISTS ' . $this->fields ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
432 297 $wpdb->query( 'DROP TABLE IF EXISTS ' . $this->forms ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
433 298 $wpdb->query( 'DROP TABLE IF EXISTS ' . $this->entries ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
434 299 $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 300
437 301 delete_option( 'frm_options' );
438 302 delete_option( 'frm_db_version' );
439 303 delete_option( 'frm_install_running' );
@@ -446,9 +310,8 @@
446 310
447 311 // Delete roles.
448 312 $frm_roles = FrmAppHelper::frm_capabilities();
449 313 $roles = get_editable_roles();
450 -
451 314 foreach ( $frm_roles as $frm_role => $frm_role_description ) {
452 315 foreach ( $roles as $role => $details ) {
453 316 $wp_roles->remove_cap( $role, $frm_role );
454 317 unset( $role, $details );
@@ -456,16 +319,15 @@
456 319 unset( $frm_role, $frm_role_description );
457 320 }
458 321 unset( $roles, $frm_roles );
459 322
460 - // Delete actions, views, and styles
323 + // delete actions, views, and styles
461 324
462 - // Prevent the post deletion from triggering entries to be deleted
325 + // prevent the post deletion from triggering entries to be deleted
463 326 remove_action( 'before_delete_post', 'FrmProDisplaysController::before_delete_post' );
464 327 remove_action( 'deleted_post', 'FrmProEntriesController::delete_entry' );
465 328
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 -
329 + $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 330 foreach ( $post_ids as $post_id ) {
469 331 // Delete's each post.
470 332 wp_delete_post( $post_id, true );
471 333 }
@@ -470,15 +332,15 @@
470 332 wp_delete_post( $post_id, true );
471 333 }
472 334 unset( $post_ids );
473 335
474 - // Delete transients
336 + // delete transients
475 337 delete_transient( 'frmpro_css' );
476 338 delete_transient( 'frm_options' );
477 339 delete_transient( 'frmpro_options' );
478 340 delete_transient( FrmOnboardingWizardController::TRANSIENT_NAME );
479 341
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
342 + $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 343
482 344 do_action( 'frm_after_uninstall' );
483 345
484 346 return true;
@@ -484,44 +346,11 @@
484 346 return true;
485 347 }
486 348
487 349 /**
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 350 * Disables summary email for multisite (not the main site) if recipient setting isn't changed.
520 351 *
521 352 * @since 6.8
522 - *
523 - * @return void
524 353 */
525 354 private function migrate_to_101() {
526 355 if ( ! is_multisite() || get_main_site_id() === get_current_blog_id() ) {
527 356 return;
@@ -527,9 +356,8 @@
527 356 return;
528 357 }
529 358
530 359 $frm_settings = FrmAppHelper::get_settings();
531 -
532 360 if ( empty( $frm_settings->summary_emails ) || '[admin_email]' !== $frm_settings->summary_emails_recipients ) {
533 361 // User changed it.
534 362 return;
535 363 }
@@ -541,10 +369,8 @@
541 369 /**
542 370 * Clear frmpro_css transient.
543 371 *
544 372 * @since 4.10.02
545 - *
546 - * @return void
547 373 */
548 374 private function migrate_to_98() {
549 375 delete_transient( 'frmpro_css' );
550 376 }
@@ -552,10 +378,8 @@
552 378 /**
553 379 * Move default_blank and clear_on_focus to placeholder.
554 380 *
555 381 * @since 4.0
556 - *
557 - * @return void
558 382 */
559 383 private function migrate_to_97() {
560 384 $this->migrate_to_placeholder( 'clear_on_focus' );
561 385 $this->migrate_to_placeholder( 'default_blank' );
@@ -564,12 +388,8 @@
564 388 /**
565 389 * Move clear_on_focus or default_blank to placeholder.
566 390 *
567 391 * @since 4.0
568 - *
569 - * @param string $type Field option key to migrate.
570 - *
571 - * @return void
572 392 */
573 393 private function migrate_to_placeholder( $type = 'clear_on_focus' ) {
574 394 $query = array(
575 395 'field_options like' => '"' . $type . '";s:1:"1";',
@@ -580,10 +400,9 @@
580 400 foreach ( $fields as $field ) {
581 401 FrmAppHelper::unserialize_or_decode( $field->field_options );
582 402 FrmAppHelper::unserialize_or_decode( $field->options );
583 403 $update_values = FrmXMLHelper::migrate_field_placeholder( $field, $type );
584 -
585 - if ( ! $update_values ) {
404 + if ( empty( $update_values ) ) {
586 405 continue;
587 406 }
588 407
589 408 FrmField::update( $field->id, $update_values );
@@ -594,15 +413,11 @@
594 413 /**
595 414 * Delete unneeded default templates
596 415 *
597 416 * @since 3.06
598 - *
599 - * @return void
600 417 */
601 418 private function migrate_to_90() {
602 419 $form = FrmForm::getOne( 'contact' );
603 -
604 - // phpcs:ignore Universal.Operators.StrictComparisons
605 420 if ( $form && $form->default_template == 1 ) {
606 421 FrmForm::destroy( 'contact' );
607 422 }
608 423 }
@@ -610,15 +425,14 @@
610 425 /**
611 426 * Reverse migration 17 -- Divide by 9
612 427 *
613 428 * @since 3.0.05
614 - *
615 - * @return void
616 429 */
617 430 private function migrate_to_86() {
431 +
618 432 $fields = $this->get_fields_with_size();
619 433
620 - foreach ( $fields as $f ) {
434 + foreach ( (array) $fields as $f ) {
621 435 FrmAppHelper::unserialize_or_decode( $f->field_options );
622 436 $size = $f->field_options['size'];
623 437 $this->maybe_convert_migrated_size( $size );
624 438
@@ -630,12 +444,11 @@
630 444 FrmField::update( $f->id, array( 'field_options' => $f->field_options ) );
631 445 unset( $f );
632 446 }
633 447
634 - // Reverse the extra size changes in widgets
448 + // reverse the extra size changes in widgets
635 449 $widgets = get_option( 'widget_frm_show_form' );
636 -
637 - if ( ! $widgets ) {
450 + if ( empty( $widgets ) ) {
638 451 return;
639 452 }
640 453
641 454 $this->revert_widget_field_size();
@@ -640,11 +453,8 @@
640 453
641 454 $this->revert_widget_field_size();
642 455 }
643 456
644 - /**
645 - * @return array
646 - */
647 457 private function get_fields_with_size() {
648 458 $field_types = array(
649 459 'textarea',
650 460 'text',
@@ -672,20 +482,16 @@
672 482 /**
673 483 * Reverse the extra size changes in widgets
674 484 *
675 485 * @since 3.0.05
676 - *
677 - * @return void
678 486 */
679 487 private function revert_widget_field_size() {
680 488 $widgets = get_option( 'widget_frm_show_form' );
681 -
682 - if ( ! $widgets ) {
489 + if ( empty( $widgets ) ) {
683 490 return;
684 491 }
685 492
686 493 FrmAppHelper::unserialize_or_decode( $widgets );
687 -
688 494 foreach ( $widgets as $k => $widget ) {
689 495 if ( ! is_array( $widget ) || ! isset( $widget['size'] ) ) {
690 496 continue;
691 497 }
@@ -691,9 +497,8 @@
691 497 }
692 498
693 499 $this->maybe_convert_migrated_size( $widgets[ $k ]['size'] );
694 500 }
695 -
696 501 update_option( 'widget_frm_show_form', $widgets );
697 502 }
698 503
699 504 /**
@@ -699,28 +504,23 @@
699 504 /**
700 505 * Divide by 9 to reverse the multiplication
701 506 *
702 507 * @since 3.0.05
703 - *
704 - * @param string $size Size string to maybe convert, passed by reference.
705 - *
706 - * @return void
707 508 */
708 509 private function maybe_convert_migrated_size( &$size ) {
709 - $has_px_size = $size && str_contains( $size, 'px' );
710 -
510 + $has_px_size = ! empty( $size ) && strpos( $size, 'px' );
711 511 if ( ! $has_px_size ) {
712 512 return;
713 513 }
714 514
715 515 $int_size = str_replace( 'px', '', $size );
716 -
717 516 if ( ! is_numeric( $int_size ) || (int) $int_size < 900 ) {
718 517 return;
719 518 }
720 519
721 520 $pixel_conversion = 9;
722 - $size = round( (int) $int_size / $pixel_conversion );
521 +
522 + $size = round( (int) $int_size / $pixel_conversion );
723 523 }
724 524
725 525 /**
726 526 * Migrate old styling settings. If sites are using the old
@@ -726,17 +526,14 @@
726 526 * Migrate old styling settings. If sites are using the old
727 527 * default 400px field width, switch it to 100%
728 528 *
729 529 * @since 2.0.4
730 - *
731 - * @return void
732 530 */
733 531 private function migrate_to_25() {
734 - // Get the style that was created with the style migration
532 + // get the style that was created with the style migration
735 533 $frm_style = new FrmStyle();
736 534 $styles = $frm_style->get_all( 'post_date', 'ASC', 1 );
737 -
738 - if ( ! $styles ) {
535 + if ( empty( $styles ) ) {
739 536 return;
740 537 }
741 538
742 539 foreach ( $styles as $style ) {
@@ -753,16 +550,13 @@
753 550 * Check if the parent_form_id columns exists.
754 551 * If not, try and add it again
755 552 *
756 553 * @since 2.0.2
757 - *
758 - * @return void
759 554 */
760 555 private function migrate_to_23() {
761 556 global $wpdb;
762 557 $exists = $wpdb->get_row( 'SHOW COLUMNS FROM ' . $this->forms . ' LIKE "parent_form_id"' ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
763 -
764 - if ( ! $exists ) {
558 + if ( empty( $exists ) ) {
765 559 $wpdb->query( 'ALTER TABLE ' . $this->forms . ' ADD parent_form_id int(11) default 0' ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
766 560 }
767 561 }
768 562
@@ -767,10 +561,8 @@
767 561 }
768 562
769 563 /**
770 564 * Change field size from character to pixel -- Multiply by 9
771 - *
772 - * @return void
773 565 */
774 566 private function migrate_to_17() {
775 567 $fields = $this->get_fields_with_size();
776 568
@@ -775,9 +567,8 @@
775 567 $fields = $this->get_fields_with_size();
776 568
777 569 foreach ( $fields as $f ) {
778 570 FrmAppHelper::unserialize_or_decode( $f->field_options );
779 -
780 571 if ( empty( $f->field_options['size'] ) || ! is_numeric( $f->field_options['size'] ) ) {
781 572 continue;
782 573 }
783 574
@@ -791,20 +582,16 @@
791 582 }
792 583
793 584 /**
794 585 * Change the characters in widgets to pixels
795 - *
796 - * @return void
797 586 */
798 587 private function adjust_widget_size() {
799 588 $widgets = get_option( 'widget_frm_show_form' );
800 -
801 - if ( ! $widgets ) {
589 + if ( empty( $widgets ) ) {
802 590 return;
803 591 }
804 592
805 593 FrmAppHelper::unserialize_or_decode( $widgets );
806 -
807 594 foreach ( $widgets as $k => $widget ) {
808 595 if ( ! is_array( $widget ) || ! isset( $widget['size'] ) ) {
809 596 continue;
810 597 }
@@ -809,17 +596,11 @@
809 596 continue;
810 597 }
811 598 $this->convert_character_to_px( $widgets[ $k ]['size'] );
812 599 }
813 -
814 600 update_option( 'widget_frm_show_form', $widgets );
815 601 }
816 602
817 - /**
818 - * @param string $size
819 - *
820 - * @return void
821 - */
822 603 private function convert_character_to_px( &$size ) {
823 604 $pixel_conversion = 9;
824 605
825 606 $size = round( $pixel_conversion * (int) $size );
@@ -862,9 +643,9 @@
862 643 * post_excerpt: message
863 644 */
864 645 foreach ( $forms as $form ) {
865 646 if ( $form->is_template && $form->default_template ) {
866 - // Don't migrate the default templates since the email will be added anyway
647 + // don't migrate the default templates since the email will be added anyway
867 648 continue;
868 649 }
869 650
870 651 // Format form options
@@ -878,9 +659,10 @@
878 659
879 660 private function migrate_to_11() {
880 661 global $wpdb;
881 662
882 - $forms = FrmDb::get_results( $this->forms, array(), 'id, options' );
663 + $forms = FrmDb::get_results( $this->forms, array(), 'id, options' );
664 +
883 665 $sending = __( 'Sending', 'formidable' );
884 666 $img = FrmAppHelper::plugin_url() . '/images/ajax_loader.gif';
885 667 $old_default_html = <<<DEFAULT_HTML
886 668 <div class="frm_submit">
@@ -892,21 +674,18 @@
892 674 unset( $sending, $img );
893 675
894 676 $new_default_html = FrmFormsHelper::get_default_html( 'submit' );
895 677 $draft_link = FrmFormsHelper::get_draft_link();
896 -
897 678 foreach ( $forms as $form ) {
898 679 FrmAppHelper::unserialize_or_decode( $form->options );
899 -
900 680 if ( empty( $form->options['submit_html'] ) ) {
901 681 continue;
902 682 }
903 683
904 - // phpcs:ignore Universal.Operators.StrictComparisons
905 684 if ( $form->options['submit_html'] != $new_default_html && $form->options['submit_html'] == $old_default_html ) {
906 685 $form->options['submit_html'] = $new_default_html;
907 686 $wpdb->update( $this->forms, array( 'options' => serialize( $form->options ) ), array( 'id' => $form->id ) );
908 - } elseif ( ! str_contains( $form->options['submit_html'], 'save_draft' ) ) {
687 + } elseif ( ! strpos( $form->options['submit_html'], 'save_draft' ) ) {
909 688 $form->options['submit_html'] = preg_replace( '~\<\/div\>(?!.*\<\/div\>)~', $draft_link . "\r\n</div>", $form->options['submit_html'] );
910 689 $wpdb->update( $this->forms, array( 'options' => serialize( $form->options ) ), array( 'id' => $form->id ) );
911 690 }
912 691 unset( $form );