Orbit Fox by ThemeIsle - Version 2.7.5

Version Description

  • 2019-02-02
Download this release

Release Info

Developer codeinwp
Plugin Icon 128x128 Orbit Fox by ThemeIsle
Version 2.7.5
Comparing to
See all releases

Code changes from version 2.7.4 to 2.7.5

CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
 
 
 
 
 
2
  ### v2.7.4 - 2019-02-01
3
  **Changes:**
4
  * update Gutenberg blocks library to the latest version
1
 
2
+ ### v2.7.5 - 2019-02-02
3
+ **Changes:**
4
+ * Improve compatibility with Image CDN module by disabling the feature if Optimole exits already
5
+
6
  ### v2.7.4 - 2019-02-01
7
  **Changes:**
8
  * update Gutenberg blocks library to the latest version
core/assets/css/orbit-fox-admin.css CHANGED
@@ -8,7 +8,7 @@
8
  * Extends Spectre.css Library
9
  */
10
  /*
11
- Version: 2.7.4
12
  */
13
 
14
  /* Document
8
  * Extends Spectre.css Library
9
  */
10
  /*
11
+ Version: 2.7.5
12
  */
13
 
14
  /* Document
core/includes/class-orbit-fox.php CHANGED
@@ -69,7 +69,7 @@ class Orbit_Fox {
69
 
70
  $this->plugin_name = 'orbit-fox';
71
 
72
- $this->version = '2.7.4';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
69
 
70
  $this->plugin_name = 'orbit-fox';
71
 
72
+ $this->version = '2.7.5';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
obfx_modules/image-cdn/init.php CHANGED
@@ -62,6 +62,11 @@ class Image_CDN_OBFX_Module extends Orbit_Fox_Module_Abstract {
62
  * @return bool
63
  */
64
  public function enable_module() {
 
 
 
 
 
65
  return true;
66
  }
67
 
62
  * @return bool
63
  */
64
  public function enable_module() {
65
+ require_once( ABSPATH . 'wp-admin' . '/includes/plugin.php' );
66
+ // Bail if we optimole already.
67
+ if ( is_plugin_active( 'optimole-wp/optimole-wp.php' ) ) {
68
+ return false;
69
+ }
70
  return true;
71
  }
72
 
readme.md CHANGED
@@ -110,6 +110,11 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
110
  5. Social Sharing Module
111
 
112
  ## Changelog ##
 
 
 
 
 
113
  ### 2.7.4 - 2019-02-01 ###
114
 
115
  * update Gutenberg blocks library to the latest version
110
  5. Social Sharing Module
111
 
112
  ## Changelog ##
113
+ ### 2.7.5 - 2019-02-02 ###
114
+
115
+ * Improve compatibility with Image CDN module by disabling the feature if Optimole exits already
116
+
117
+
118
  ### 2.7.4 - 2019-02-01 ###
119
 
120
  * update Gutenberg blocks library to the latest version
readme.txt CHANGED
@@ -110,6 +110,11 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
110
  5. Social Sharing Module
111
 
112
  == Changelog ==
 
 
 
 
 
113
  = 2.7.4 - 2019-02-01 =
114
 
115
  * update Gutenberg blocks library to the latest version
110
  5. Social Sharing Module
111
 
112
  == Changelog ==
113
+ = 2.7.5 - 2019-02-02 =
114
+
115
+ * Improve compatibility with Image CDN module by disabling the feature if Optimole exits already
116
+
117
+
118
  = 2.7.4 - 2019-02-01 =
119
 
120
  * update Gutenberg blocks library to the latest version
themeisle-companion.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: Orbit Fox Companion
16
  * Plugin URI: https://orbitfox.com/
17
  * Description: This swiss-knife plugin comes with a quality template library, menu/sharing icons modules, Gutenberg blocks, and newly added Elementor/BeaverBuilder page builder widgets on each release.
18
- * Version: 2.7.4
19
  * Author: Themeisle
20
  * Author URI: https://orbitfox.com/
21
  * License: GPL-2.0+
15
  * Plugin Name: Orbit Fox Companion
16
  * Plugin URI: https://orbitfox.com/
17
  * Description: This swiss-knife plugin comes with a quality template library, menu/sharing icons modules, Gutenberg blocks, and newly added Elementor/BeaverBuilder page builder widgets on each release.
18
+ * Version: 2.7.5
19
  * Author: Themeisle
20
  * Author URI: https://orbitfox.com/
21
  * License: GPL-2.0+
themeisle-hash.json CHANGED
@@ -1 +1 @@
1
- {"class-autoloader.php":"57e533b653d235e76cb9953720e4f5e9","index.php":"39ab8276fb0e4bd3fcab3270822c5977","themeisle-companion.php":"bea96b783e6c8936b9c2a052044bc10b","uninstall.php":"7abf753a29e0eb3a844c8a0ba9493b7c"}
1
+ {"class-autoloader.php":"57e533b653d235e76cb9953720e4f5e9","index.php":"39ab8276fb0e4bd3fcab3270822c5977","themeisle-companion.php":"9e198ebc7e308b543bc7a0ad8307289a","uninstall.php":"7abf753a29e0eb3a844c8a0ba9493b7c"}
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit201ea6e4aa7ae08ecfb335dd8a333aed::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit2b016eda9ab718439e97a6fd0f2c9df0::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit201ea6e4aa7ae08ecfb335dd8a333aed
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit201ea6e4aa7ae08ecfb335dd8a333aed
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit201ea6e4aa7ae08ecfb335dd8a333aed', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit201ea6e4aa7ae08ecfb335dd8a333aed', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -42,14 +42,14 @@ class ComposerAutoloaderInit201ea6e4aa7ae08ecfb335dd8a333aed
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
- composerRequire201ea6e4aa7ae08ecfb335dd8a333aed($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
- function composerRequire201ea6e4aa7ae08ecfb335dd8a333aed($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit2b016eda9ab718439e97a6fd0f2c9df0
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit2b016eda9ab718439e97a6fd0f2c9df0', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit2b016eda9ab718439e97a6fd0f2c9df0', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
+ composerRequire2b016eda9ab718439e97a6fd0f2c9df0($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
+ function composerRequire2b016eda9ab718439e97a6fd0f2c9df0($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;