Orbit Fox by ThemeIsle - Version 2.7.2

Version Description

  • 2018-12-10
Download this release

Release Info

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

Code changes from version 2.7.1 to 2.7.2

CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
 
 
 
 
 
2
  ### v2.7.1 - 2018-12-07
3
  **Changes:**
4
  * - Fix for Gutenberg blocks module loading
1
 
2
+ ### v2.7.2 - 2018-12-10
3
+ **Changes:**
4
+ * Tested with WP 5.0
5
+
6
  ### v2.7.1 - 2018-12-07
7
  **Changes:**
8
  * - Fix for Gutenberg blocks module loading
core/assets/css/orbit-fox-admin.css CHANGED
@@ -8,7 +8,7 @@
8
  * Extends Spectre.css Library
9
  */
10
  /*
11
- Version: 2.7.1
12
  */
13
 
14
  /* Document
8
  * Extends Spectre.css Library
9
  */
10
  /*
11
+ Version: 2.7.2
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.1';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
69
 
70
  $this->plugin_name = 'orbit-fox';
71
 
72
+ $this->version = '2.7.2';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
obfx_modules/policy-notice/init.php CHANGED
@@ -326,8 +326,13 @@ class Policy_Notice_OBFX_Module extends Orbit_Fox_Module_Abstract {
326
  * @return array
327
  */
328
  private function get_policy_pages_array(){
 
 
 
 
 
329
  $options = array(
330
- '0' => esc_html__( 'Default Core Policy', 'themeisle-companion' )
331
  );
332
 
333
  $pages = get_pages( array(
326
  * @return array
327
  */
328
  private function get_policy_pages_array(){
329
+ $core_policy_suffix = '';
330
+ $url = get_option( 'wp_page_for_privacy_policy' );
331
+ if ( empty( $url ) ) {
332
+ $core_policy_suffix = ' (' . esc_html__( 'Not Set', 'themeisle-companion' ) . ')';
333
+ }
334
  $options = array(
335
+ '0' => esc_html__( 'Default Core Policy', 'themeisle-companion' ) . $core_policy_suffix
336
  );
337
 
338
  $pages = get_pages( array(
readme.md CHANGED
@@ -2,7 +2,7 @@
2
  **Contributors:** [themeisle](https://profiles.wordpress.org/themeisle), [codeinwp](https://profiles.wordpress.org/codeinwp), [rodicaelena](https://profiles.wordpress.org/rodicaelena), [baicusandrei](https://profiles.wordpress.org/baicusandrei), [hardeepasrani](https://profiles.wordpress.org/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:** 4.9
6
  **Requires PHP:** 5.4
7
  **Stable tag:** trunk
8
  **License:** GPLv2 or later
@@ -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.1 - 2018-12-07 ###
114
 
115
  * - Fix for Gutenberg blocks module loading
2
  **Contributors:** [themeisle](https://profiles.wordpress.org/themeisle), [codeinwp](https://profiles.wordpress.org/codeinwp), [rodicaelena](https://profiles.wordpress.org/rodicaelena), [baicusandrei](https://profiles.wordpress.org/baicusandrei), [hardeepasrani](https://profiles.wordpress.org/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.0
6
  **Requires PHP:** 5.4
7
  **Stable tag:** trunk
8
  **License:** GPLv2 or later
110
  5. Social Sharing Module
111
 
112
  ## Changelog ##
113
+ ### 2.7.2 - 2018-12-10 ###
114
+
115
+ * Tested with WP 5.0
116
+
117
+
118
  ### 2.7.1 - 2018-12-07 ###
119
 
120
  * - Fix for Gutenberg blocks module loading
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  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: 4.9
6
  Requires PHP: 5.4
7
  Stable tag: trunk
8
  License: GPLv2 or later
@@ -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.1 - 2018-12-07 =
114
 
115
  * - Fix for Gutenberg blocks module loading
2
  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.0
6
  Requires PHP: 5.4
7
  Stable tag: trunk
8
  License: GPLv2 or later
110
  5. Social Sharing Module
111
 
112
  == Changelog ==
113
+ = 2.7.2 - 2018-12-10 =
114
+
115
+ * Tested with WP 5.0
116
+
117
+
118
  = 2.7.1 - 2018-12-07 =
119
 
120
  * - Fix for Gutenberg blocks module loading
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.1
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.2
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":"a23983e28cda5894c32a1a924bfe9a91","uninstall.php":"7abf753a29e0eb3a844c8a0ba9493b7c"}
1
+ {"class-autoloader.php":"57e533b653d235e76cb9953720e4f5e9","index.php":"39ab8276fb0e4bd3fcab3270822c5977","themeisle-companion.php":"081e90e8660f2bde0d27c0604d9c34ad","uninstall.php":"7abf753a29e0eb3a844c8a0ba9493b7c"}
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit99ec470624ad50c81a603786ce015f63::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit8ece57ce2ee4024f117d571a2875f404::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit99ec470624ad50c81a603786ce015f63
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit99ec470624ad50c81a603786ce015f63
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit99ec470624ad50c81a603786ce015f63', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit99ec470624ad50c81a603786ce015f63', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -42,14 +42,14 @@ class ComposerAutoloaderInit99ec470624ad50c81a603786ce015f63
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
- composerRequire99ec470624ad50c81a603786ce015f63($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
- function composerRequire99ec470624ad50c81a603786ce015f63($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 ComposerAutoloaderInit8ece57ce2ee4024f117d571a2875f404
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit8ece57ce2ee4024f117d571a2875f404', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit8ece57ce2ee4024f117d571a2875f404', '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
+ composerRequire8ece57ce2ee4024f117d571a2875f404($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
+ function composerRequire8ece57ce2ee4024f117d571a2875f404($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;