All-in-One WP Migration - Version 7.30

Version Description

Added

  • Support for Avada Fusion Builder
Download this release

Release Info

Developer bangelov
Plugin Icon 128x128 All-in-One WP Migration
Version 7.30
Comparing to
See all releases

Code changes from version 7.29 to 7.30

all-in-one-wp-migration.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Migration tool for all your blog data. Import or Export your blog content with a single click.
6
  * Author: ServMask
7
  * Author URI: https://servmask.com/
8
- * Version: 7.29
9
  * Text Domain: all-in-one-wp-migration
10
  * Domain Path: /languages
11
  * Network: True
5
  * Description: Migration tool for all your blog data. Import or Export your blog content with a single click.
6
  * Author: ServMask
7
  * Author URI: https://servmask.com/
8
+ * Version: 7.30
9
  * Text Domain: all-in-one-wp-migration
10
  * Domain Path: /languages
11
  * Network: True
constants.php CHANGED
@@ -35,7 +35,7 @@ define( 'AI1WM_DEBUG', false );
35
  // ==================
36
  // = Plugin Version =
37
  // ==================
38
- define( 'AI1WM_VERSION', '7.29' );
39
 
40
  // ===============
41
  // = Plugin Name =
35
  // ==================
36
  // = Plugin Version =
37
  // ==================
38
+ define( 'AI1WM_VERSION', '7.30' );
39
 
40
  // ===============
41
  // = Plugin Name =
lib/model/class-ai1wm-extensions.php CHANGED
@@ -214,7 +214,7 @@ class Ai1wm_Extensions {
214
  'about' => AI1WMME_PLUGIN_ABOUT,
215
  'basename' => AI1WMME_PLUGIN_BASENAME,
216
  'version' => AI1WMME_VERSION,
217
- 'requires' => '3.98',
218
  'short' => AI1WMME_PLUGIN_SHORT,
219
  );
220
  }
214
  'about' => AI1WMME_PLUGIN_ABOUT,
215
  'basename' => AI1WMME_PLUGIN_BASENAME,
216
  'version' => AI1WMME_VERSION,
217
+ 'requires' => '3.99',
218
  'short' => AI1WMME_PLUGIN_SHORT,
219
  );
220
  }
lib/model/import/class-ai1wm-import-database.php CHANGED
@@ -1052,6 +1052,9 @@ class Ai1wm_Import_Database {
1052
  // Set Optimize Press
1053
  $mysql->set_optimize_press( ai1wm_validate_plugin_basename( 'optimizePressPlugin/optimizepress.php' ) );
1054
 
 
 
 
1055
  // Set BeTheme Responsive
1056
  $mysql->set_betheme_responsive( ai1wm_validate_theme_basename( 'betheme/style.css' ) );
1057
 
1052
  // Set Optimize Press
1053
  $mysql->set_optimize_press( ai1wm_validate_plugin_basename( 'optimizePressPlugin/optimizepress.php' ) );
1054
 
1055
+ // Set Avada Fusion Builder
1056
+ $mysql->set_avada_fusion_builder( ai1wm_validate_plugin_basename( 'fusion-builder/fusion-builder.php' ) );
1057
+
1058
  // Set BeTheme Responsive
1059
  $mysql->set_betheme_responsive( ai1wm_validate_theme_basename( 'betheme/style.css' ) );
1060
 
lib/vendor/servmask/database/class-ai1wm-database.php CHANGED
@@ -155,6 +155,13 @@ abstract class Ai1wm_Database {
155
  */
156
  protected $optimize_press = false;
157
 
 
 
 
 
 
 
 
158
  /**
159
  * Constructor
160
  *
@@ -561,6 +568,27 @@ abstract class Ai1wm_Database {
561
  return $this->optimize_press;
562
  }
563
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
564
  /**
565
  * Get views
566
  *
@@ -1412,8 +1440,8 @@ abstract class Ai1wm_Database {
1412
  $input = preg_replace_callback( '/\\\\"(code-php|code-css|code-js)\\\\":\\\\"([a-zA-Z0-9\/+]+={0,2})\\\\"/S', array( $this, 'replace_oxygen_builder_values_callback' ), $input );
1413
  }
1414
 
1415
- // Replace base64 encoded values (BeTheme Responsive and Optimize Press)
1416
- if ( $this->get_betheme_responsive() || $this->get_optimize_press() ) {
1417
  $input = preg_replace_callback( "/'([a-zA-Z0-9\/+]+={0,2})'/S", array( $this, 'replace_base64_values_callback' ), $input );
1418
  }
1419
 
155
  */
156
  protected $optimize_press = false;
157
 
158
+ /**
159
+ * Avada Fusion Builder
160
+ *
161
+ * @var boolean
162
+ */
163
+ protected $avada_fusion_builder = false;
164
+
165
  /**
166
  * Constructor
167
  *
568
  return $this->optimize_press;
569
  }
570
 
571
+ /**
572
+ * Set Avada Fusion Builder
573
+ *
574
+ * @param boolean $active Is Avada Fusion Builder Active?
575
+ * @return object
576
+ */
577
+ public function set_avada_fusion_builder( $active ) {
578
+ $this->avada_fusion_builder = $active;
579
+
580
+ return $this;
581
+ }
582
+
583
+ /**
584
+ * Get Avada Fusion Builder
585
+ *
586
+ * @return boolean
587
+ */
588
+ public function get_avada_fusion_builder() {
589
+ return $this->avada_fusion_builder;
590
+ }
591
+
592
  /**
593
  * Get views
594
  *
1440
  $input = preg_replace_callback( '/\\\\"(code-php|code-css|code-js)\\\\":\\\\"([a-zA-Z0-9\/+]+={0,2})\\\\"/S', array( $this, 'replace_oxygen_builder_values_callback' ), $input );
1441
  }
1442
 
1443
+ // Replace base64 encoded values (BeTheme Responsive, Optimize Press and Avada Fusion Builder)
1444
+ if ( $this->get_betheme_responsive() || $this->get_optimize_press() || $this->get_avada_fusion_builder() ) {
1445
  $input = preg_replace_callback( "/'([a-zA-Z0-9\/+]+={0,2})'/S", array( $this, 'replace_base64_values_callback' ), $input );
1446
  }
1447
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: move, transfer, copy, migrate, backup, clone, restore, db migration, wordp
4
  Requires at least: 3.3
5
  Tested up to: 5.5
6
  Requires PHP: 5.2.17
7
- Stable tag: 7.29
8
  License: GPLv2 or later
9
 
10
  Move, transfer, copy, migrate, and backup a site with 1-click. Quick, easy, and reliable.
@@ -108,6 +108,11 @@ Alternatively you can download the plugin using the download button on this page
108
  All-in-One WP Migration **asks for your consent** to collect **requester's email address** when filling plugin's contact form. [GDPR Compliant Privacy Policy](https://www.iubenda.com/privacy-policy/946881)
109
 
110
  == Changelog ==
 
 
 
 
 
111
  = 7.29 =
112
  **Added**
113
 
4
  Requires at least: 3.3
5
  Tested up to: 5.5
6
  Requires PHP: 5.2.17
7
+ Stable tag: 7.30
8
  License: GPLv2 or later
9
 
10
  Move, transfer, copy, migrate, and backup a site with 1-click. Quick, easy, and reliable.
108
  All-in-One WP Migration **asks for your consent** to collect **requester's email address** when filling plugin's contact form. [GDPR Compliant Privacy Policy](https://www.iubenda.com/privacy-policy/946881)
109
 
110
  == Changelog ==
111
+ = 7.30 =
112
+ **Added**
113
+
114
+ * Support for Avada Fusion Builder
115
+
116
  = 7.29 =
117
  **Added**
118