Orbit Fox by ThemeIsle - Version 2.8.8

Version Description

  • 2019-09-11
Download this release

Release Info

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

Code changes from version 2.8.7 to 2.8.8

CHANGELOG.md CHANGED
@@ -1,7 +1,8 @@
1
 
2
- ### v2.8.7 - 2019-08-13
3
  **Changes:**
4
-
 
5
  ### v2.8.7 - 2019-08-13
6
  **Changes:**
7
  * Release
1
 
2
+ ### v2.8.8 - 2019-09-11
3
  **Changes:**
4
+ * Fixes Constant Warning for Beaver Widgets Module
5
+
6
  ### v2.8.7 - 2019-08-13
7
  **Changes:**
8
  * Release
core/assets/css/orbit-fox-admin.css CHANGED
@@ -8,7 +8,7 @@
8
  * Extends Spectre.css Library
9
  */
10
  /*
11
- Version: 2.8.7
12
  */
13
 
14
  /* Document
8
  * Extends Spectre.css Library
9
  */
10
  /*
11
+ Version: 2.8.8
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.8.7';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
69
 
70
  $this->plugin_name = 'orbit-fox';
71
 
72
+ $this->version = '2.8.8';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
obfx_modules/beaver-widgets/custom-fields/number-field/number_field.php CHANGED
@@ -24,7 +24,7 @@ add_action( 'fl_builder_control_obfx_number', 'obfx_number_field', 1, 3 );
24
  */
25
  function obfx_enqueue_field() {
26
  if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_active() ) {
27
- wp_enqueue_script( 'obfx-number-js', BEAVER_WIDGETS_URL . 'custom-fields/number-field/number.js', array(), THEMEISLE_COMPANION_VERSION, true );
28
  }
29
  }
30
  add_action( 'wp_enqueue_scripts', 'obfx_enqueue_field' );
24
  */
25
  function obfx_enqueue_field() {
26
  if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_active() ) {
27
+ wp_enqueue_script( 'obfx-number-js', BEAVER_WIDGETS_URL . 'custom-fields/number-field/number.js', array(), '1.0.0', true );
28
  }
29
  }
30
  add_action( 'wp_enqueue_scripts', 'obfx_enqueue_field' );
obfx_modules/beaver-widgets/custom-fields/toggle-field/toggle_field.php CHANGED
@@ -37,8 +37,8 @@ add_action( 'fl_builder_control_obfx_toggle', 'obfx_toggle_field', 1, 3 );
37
  */
38
  function obfx_enqueue_toggle_field() {
39
  if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_active() ) {
40
- wp_enqueue_style( 'obfx-toggle-css', BEAVER_WIDGETS_URL . 'custom-fields/toggle-field/toggle.css', null, THEMEISLE_COMPANION_VERSION, 'all' );
41
- wp_enqueue_script( 'obfx-toggle-js', BEAVER_WIDGETS_URL . 'custom-fields/toggle-field/toggle.js', array(), THEMEISLE_COMPANION_VERSION, true );
42
  }
43
  }
44
  add_action( 'wp_enqueue_scripts', 'obfx_enqueue_toggle_field' );
37
  */
38
  function obfx_enqueue_toggle_field() {
39
  if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_active() ) {
40
+ wp_enqueue_style( 'obfx-toggle-css', BEAVER_WIDGETS_URL . 'custom-fields/toggle-field/toggle.css', array(), '1.0.0', 'all' );
41
+ wp_enqueue_script( 'obfx-toggle-js', BEAVER_WIDGETS_URL . 'custom-fields/toggle-field/toggle.js', array(), '1.0.0', true );
42
  }
43
  }
44
  add_action( 'wp_enqueue_scripts', 'obfx_enqueue_toggle_field' );
readme.md CHANGED
@@ -3,7 +3,7 @@
3
  **Tags:** widget, admin, widgets, sharing, sections, themes, stock photos, custom icons, icons, menu icons, stock, templates
4
  **Requires at least:** 4.7
5
  **Tested up to:** 5.2
6
- **Requires PHP:** 5.4
7
  **Stable tag:** trunk
8
  **License:** GPLv2 or later
9
  **License URI:** http://www.gnu.org/licenses/gpl-2.0.html
@@ -109,6 +109,11 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
109
  5. Social Sharing Module
110
 
111
  ## Changelog ##
 
 
 
 
 
112
  ### 2.8.7 - 2019-08-13 ###
113
 
114
  * Fix error notice in menu icons
3
  **Tags:** widget, admin, widgets, sharing, sections, themes, stock photos, custom icons, icons, menu icons, stock, templates
4
  **Requires at least:** 4.7
5
  **Tested up to:** 5.2
6
+ **Requires PHP:** 5.6
7
  **Stable tag:** trunk
8
  **License:** GPLv2 or later
9
  **License URI:** http://www.gnu.org/licenses/gpl-2.0.html
109
  5. Social Sharing Module
110
 
111
  ## Changelog ##
112
+ ### 2.8.8 - 2019-09-11 ###
113
+
114
+ * Fixes Constant Warning for Beaver Widgets Module
115
+
116
+
117
  ### 2.8.7 - 2019-08-13 ###
118
 
119
  * Fix error notice in menu icons
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: themeisle, codeinwp, rodicaelena, baicusandrei, hardeepasrani
3
  Tags: widget, admin, widgets, sharing, sections, themes, stock photos, custom icons, icons, menu icons, stock, templates
4
  Requires at least: 4.7
5
  Tested up to: 5.2
6
- Requires PHP: 5.4
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -109,6 +109,11 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
109
  5. Social Sharing Module
110
 
111
  == Changelog ==
 
 
 
 
 
112
  = 2.8.7 - 2019-08-13 =
113
 
114
  * Fix error notice in menu icons
3
  Tags: widget, admin, widgets, sharing, sections, themes, stock photos, custom icons, icons, menu icons, stock, templates
4
  Requires at least: 4.7
5
  Tested up to: 5.2
6
+ Requires PHP: 5.6
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
109
  5. Social Sharing Module
110
 
111
  == Changelog ==
112
+ = 2.8.8 - 2019-09-11 =
113
+
114
+ * Fixes Constant Warning for Beaver Widgets Module
115
+
116
+
117
  = 2.8.7 - 2019-08-13 =
118
 
119
  * Fix error notice in menu icons
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.8.7
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.8.8
19
  * Author: Themeisle
20
  * Author URI: https://orbitfox.com/
21
  * License: GPL-2.0+
themeisle-hash.json CHANGED
@@ -1 +1 @@
1
- {"class-autoloader.php":"61ea652f66f6ca0ead234c6357f88791","index.php":"39ab8276fb0e4bd3fcab3270822c5977","themeisle-companion.php":"c1cb777756cb665057798251ec04a863","uninstall.php":"7abf753a29e0eb3a844c8a0ba9493b7c"}
1
+ {"class-autoloader.php":"61ea652f66f6ca0ead234c6357f88791","index.php":"39ab8276fb0e4bd3fcab3270822c5977","themeisle-companion.php":"aa3ca597bbc531f90be9f4f93057c059","uninstall.php":"7abf753a29e0eb3a844c8a0ba9493b7c"}
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit4fb5dcade6e1ed1350964ef788107bfb::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit77983c28fea376a5a14202bc4c78a2c7::getLoader();
vendor/codeinwp/themeisle-sdk/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ## [3.1.2](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.1...v3.1.2) (2019-08-12)
2
 
3
 
1
+ ## [3.1.4](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.3...v3.1.4) (2019-08-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * license key was missing on get_version call ([365cde6](https://github.com/Codeinwp/themeisle-sdk/commit/365cde6))
7
+ * license key was missing on get_version call ([c02f225](https://github.com/Codeinwp/themeisle-sdk/commit/c02f225))
8
+
9
+ ## [3.1.3](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.2...v3.1.3) (2019-08-20)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * license deactivation behaviour https://github.com/Codeinwp/visua… ([59c4afe](https://github.com/Codeinwp/themeisle-sdk/commit/59c4afe))
15
+ * license deactivation behaviour https://github.com/Codeinwp/visualizer-pro/issues/192 ([f641e18](https://github.com/Codeinwp/themeisle-sdk/commit/f641e18))
16
+
17
  ## [3.1.2](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.1...v3.1.2) (2019-08-12)
18
 
19
 
vendor/codeinwp/themeisle-sdk/load.php CHANGED
@@ -14,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) {
14
  return;
15
  }
16
  // Current SDK version and path.
17
- $themeisle_sdk_version = '3.1.2';
18
  $themeisle_sdk_path = dirname( __FILE__ );
19
 
20
  global $themeisle_sdk_max_version;
14
  return;
15
  }
16
  // Current SDK version and path.
17
+ $themeisle_sdk_version = '3.1.4';
18
  $themeisle_sdk_path = dirname( __FILE__ );
19
 
20
  global $themeisle_sdk_max_version;
vendor/codeinwp/themeisle-sdk/src/Modules/Licenser.php CHANGED
@@ -158,7 +158,7 @@ class Licenser extends Abstract_Module {
158
  <?php
159
  echo sprintf(
160
  '<p>%s<input class="themeisle-sdk-license-input %s" type="text" id="%s_license" name="%s_license" value="%s" /><a class="%s">%s</a>&nbsp;&nbsp;&nbsp;<button name="%s_btn_trigger" class="button button-primary themeisle-sdk-licenser-button-cta" value="yes" type="submit" >%s</button></p><p class="description">%s</p>',
161
- ( ( 'valid' === $status ) ? sprintf( '<input type="hidden" value="%s" name="%s_license" />', $this->product->get_key(), $value ) : '' ),
162
  ( ( 'valid' === $status ) ? 'themeisle-sdk-text-input-valid' : '' ),
163
  $this->product->get_key(),
164
  ( ( 'valid' === $status ) ? $this->product->get_key() . '_mask' : $this->product->get_key() ),
@@ -567,7 +567,7 @@ class Licenser extends Abstract_Module {
567
  $api_params = array(
568
  'edd_action' => 'get_version',
569
  'version' => $this->product->get_version(),
570
- 'license' => empty( $this->license_key ) ? 'free' : '',
571
  'name' => rawurlencode( $this->product->get_name() ),
572
  'slug' => $this->product->get_slug(),
573
  'author' => rawurlencode( $this->get_distributor_name() ),
158
  <?php
159
  echo sprintf(
160
  '<p>%s<input class="themeisle-sdk-license-input %s" type="text" id="%s_license" name="%s_license" value="%s" /><a class="%s">%s</a>&nbsp;&nbsp;&nbsp;<button name="%s_btn_trigger" class="button button-primary themeisle-sdk-licenser-button-cta" value="yes" type="submit" >%s</button></p><p class="description">%s</p>',
161
+ ( ( 'valid' === $status ) ? sprintf( '<input type="hidden" value="%s" name="%s_license" />', $value, $this->product->get_key() ) : '' ),
162
  ( ( 'valid' === $status ) ? 'themeisle-sdk-text-input-valid' : '' ),
163
  $this->product->get_key(),
164
  ( ( 'valid' === $status ) ? $this->product->get_key() . '_mask' : $this->product->get_key() ),
567
  $api_params = array(
568
  'edd_action' => 'get_version',
569
  'version' => $this->product->get_version(),
570
+ 'license' => empty( $this->license_key ) ? 'free' : $this->license_key,
571
  'name' => rawurlencode( $this->product->get_name() ),
572
  'slug' => $this->product->get_slug(),
573
  'author' => rawurlencode( $this->get_distributor_name() ),
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit4fb5dcade6e1ed1350964ef788107bfb
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit4fb5dcade6e1ed1350964ef788107bfb
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit4fb5dcade6e1ed1350964ef788107bfb', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit4fb5dcade6e1ed1350964ef788107bfb', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -42,14 +42,14 @@ class ComposerAutoloaderInit4fb5dcade6e1ed1350964ef788107bfb
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
- composerRequire4fb5dcade6e1ed1350964ef788107bfb($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
- function composerRequire4fb5dcade6e1ed1350964ef788107bfb($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 ComposerAutoloaderInit77983c28fea376a5a14202bc4c78a2c7
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit77983c28fea376a5a14202bc4c78a2c7', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit77983c28fea376a5a14202bc4c78a2c7', '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
+ composerRequire77983c28fea376a5a14202bc4c78a2c7($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
+ function composerRequire77983c28fea376a5a14202bc4c78a2c7($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;
vendor/composer/installed.json CHANGED
@@ -191,17 +191,17 @@
191
  },
192
  {
193
  "name": "codeinwp/themeisle-sdk",
194
- "version": "3.1.2",
195
- "version_normalized": "3.1.2.0",
196
  "source": {
197
  "type": "git",
198
  "url": "https://github.com/Codeinwp/themeisle-sdk.git",
199
- "reference": "a286316f5dd93cc91bbc5faeb09fff8f3977676b"
200
  },
201
  "dist": {
202
  "type": "zip",
203
- "url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/a286316f5dd93cc91bbc5faeb09fff8f3977676b",
204
- "reference": "a286316f5dd93cc91bbc5faeb09fff8f3977676b",
205
  "shasum": ""
206
  },
207
  "require-dev": {
@@ -209,7 +209,7 @@
209
  "squizlabs/php_codesniffer": "^3.1",
210
  "wp-coding-standards/wpcs": "^1.0.0"
211
  },
212
- "time": "2019-08-12 11:34:12",
213
  "type": "library",
214
  "installation-source": "dist",
215
  "notification-url": "https://packagist.org/downloads/",
191
  },
192
  {
193
  "name": "codeinwp/themeisle-sdk",
194
+ "version": "3.1.4",
195
+ "version_normalized": "3.1.4.0",
196
  "source": {
197
  "type": "git",
198
  "url": "https://github.com/Codeinwp/themeisle-sdk.git",
199
+ "reference": "ede4dbdb119ad5b5d317f3866d68c90a45fe8179"
200
  },
201
  "dist": {
202
  "type": "zip",
203
+ "url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/ede4dbdb119ad5b5d317f3866d68c90a45fe8179",
204
+ "reference": "ede4dbdb119ad5b5d317f3866d68c90a45fe8179",
205
  "shasum": ""
206
  },
207
  "require-dev": {
209
  "squizlabs/php_codesniffer": "^3.1",
210
  "wp-coding-standards/wpcs": "^1.0.0"
211
  },
212
+ "time": "2019-08-23 08:47:43",
213
  "type": "library",
214
  "installation-source": "dist",
215
  "notification-url": "https://packagist.org/downloads/",