Migrate Guru: Migrate & Clone WordPress Free - Version 4.68

Version Description

  • Removing use of constants for arrays for PHP 5.4 support.
Download this release

Release Info

Developer ritesh.soni36
Plugin Icon 128x128 Migrate Guru: Migrate & Clone WordPress Free
Version 4.68
Comparing to
See all releases

Code changes from version 4.66 to 4.68

callback/base.php CHANGED
@@ -5,10 +5,10 @@ if (!class_exists('BVCallbackBase')) :
5
 
6
  class BVCallbackBase {
7
 
8
- const WING_INFOS = array("BRAND_WING_VERSION" => '1.0',
9
  "DB_WING_VERSION" => '1.0',
10
  "ACCOUNT_WING_VERSION" => '1.0',
11
- "MISC_WING_VERSION" => '1.0',
12
  "FS_WING_VERSION" => '1.0',
13
  "INFO_WING_VERSION" => '1.0',
14
  );
5
 
6
  class BVCallbackBase {
7
 
8
+ public static $wing_infos = array("BRAND_WING_VERSION" => '1.0',
9
  "DB_WING_VERSION" => '1.0',
10
  "ACCOUNT_WING_VERSION" => '1.0',
11
+ "MISC_WING_VERSION" => '1.1',
12
  "FS_WING_VERSION" => '1.0',
13
  "INFO_WING_VERSION" => '1.0',
14
  );
callback/handler.php CHANGED
@@ -92,6 +92,10 @@ if (!class_exists('BVCallbackHandler')) :
92
  require_once dirname( __FILE__ ) . '/wings/actlog.php';
93
  $module = new BVActLogCallback($this);
94
  break;
 
 
 
 
95
  default:
96
  require_once dirname( __FILE__ ) . '/wings/misc.php';
97
  $module = new BVMiscCallback($this);
92
  require_once dirname( __FILE__ ) . '/wings/actlog.php';
93
  $module = new BVActLogCallback($this);
94
  break;
95
+ case 'speed':
96
+ require_once dirname( __FILE__ ) . '/wings/speed.php';
97
+ $module = new BVSpeedCallback($this);
98
+ break;
99
  default:
100
  require_once dirname( __FILE__ ) . '/wings/misc.php';
101
  $module = new BVMiscCallback($this);
callback/wings/misc.php CHANGED
@@ -11,7 +11,7 @@ class BVMiscCallback extends BVCallbackBase {
11
  public $bvapi;
12
  public $db;
13
 
14
- const MISC_WING_VERSION = 1.0;
15
 
16
  public function __construct($callback_handler) {
17
  $this->settings = $callback_handler->settings;
@@ -49,7 +49,7 @@ class BVMiscCallback extends BVCallbackBase {
49
  }
50
 
51
  public function getWingInfo() {
52
- return array('wing_info' => self::WING_INFOS);
53
  }
54
 
55
  public function post_types_data($post_params) {
11
  public $bvapi;
12
  public $db;
13
 
14
+ const MISC_WING_VERSION = 1.1;
15
 
16
  public function __construct($callback_handler) {
17
  $this->settings = $callback_handler->settings;
49
  }
50
 
51
  public function getWingInfo() {
52
+ return array('wing_info' => self::$wing_infos);
53
  }
54
 
55
  public function post_types_data($post_params) {
info.php CHANGED
@@ -10,7 +10,7 @@ if (!class_exists('MGInfo')) :
10
  public $badgeinfo = 'bvmgbadge';
11
  public $ip_header_option = 'bvmgipheader';
12
  public $brand_option = 'bvmgbrand';
13
- public $version = '4.66';
14
  public $webpage = 'https://www.migrateguru.com';
15
  public $appurl = 'https://mg.blogvault.net';
16
  public $slug = 'migrate-guru/migrateguru.php';
10
  public $badgeinfo = 'bvmgbadge';
11
  public $ip_header_option = 'bvmgipheader';
12
  public $brand_option = 'bvmgbrand';
13
+ public $version = '4.68';
14
  public $webpage = 'https://www.migrateguru.com';
15
  public $appurl = 'https://mg.blogvault.net';
16
  public $slug = 'migrate-guru/migrateguru.php';
migrateguru.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://www.migrateguru.com
5
  Description: Migrating your site(s) to any WordPress Hosting platform has never been so easy.
6
  Author: Migrate Guru
7
  Author URI: http://www.migrateguru.com
8
- Version: 4.66
9
  Network: True
10
  */
11
 
5
  Description: Migrating your site(s) to any WordPress Hosting platform has never been so easy.
6
  Author: Migrate Guru
7
  Author URI: http://www.migrateguru.com
8
+ Version: 4.68
9
  Network: True
10
  */
11
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: https://www.migrateguru.com/
6
  Requires at least: 4.0
7
  Tested up to: 5.8
8
  Requires PHP: 5.4.0
9
- Stable tag: 4.66
10
  License: GPLv2 or later
11
  License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
12
 
@@ -132,6 +132,9 @@ Yes, we do. You can access it here: https://migrateguru.freshdesk.com/support/ho
132
  6. Click ‘Migrate’.
133
 
134
  == Changelog =
 
 
 
135
  = 4.66 =
136
  * Post type fetch improvement.
137
 
6
  Requires at least: 4.0
7
  Tested up to: 5.8
8
  Requires PHP: 5.4.0
9
+ Stable tag: 4.68
10
  License: GPLv2 or later
11
  License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
12
 
132
  6. Click ‘Migrate’.
133
 
134
  == Changelog =
135
+ = 4.68 =
136
+ * Removing use of constants for arrays for PHP 5.4 support.
137
+
138
  = 4.66 =
139
  * Post type fetch improvement.
140