Version Description
Download this release
Release Info
| Developer | themeisle |
| Plugin | |
| Version | 2.9.14 |
| Comparing to | |
| See all releases | |
Code changes from version 2.9.13 to 2.9.14
- CHANGELOG.md +4 -0
- core/app/class-orbit-fox-admin.php +0 -17
- core/includes/class-orbit-fox.php +1 -2
- readme.md +7 -0
- readme.txt +7 -0
- themeisle-companion.php +1 -1
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +4 -4
CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
##### [Version 2.9.13](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.12...v2.9.13) (2020-08-04)
|
| 2 |
|
| 3 |
- Removed Starter Sites library and import process used for the Neve theme
|
| 1 |
+
##### [Version 2.9.14](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.13...v2.9.14) (2020-08-07)
|
| 2 |
+
|
| 3 |
+
- Remove affiliate link
|
| 4 |
+
|
| 5 |
##### [Version 2.9.13](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.12...v2.9.13) (2020-08-04)
|
| 6 |
|
| 7 |
- Removed Starter Sites library and import process used for the Neve theme
|
core/app/class-orbit-fox-admin.php
CHANGED
|
@@ -181,23 +181,6 @@ class Orbit_Fox_Admin {
|
|
| 181 |
}
|
| 182 |
}
|
| 183 |
|
| 184 |
-
/**
|
| 185 |
-
* Define partners data.
|
| 186 |
-
*/
|
| 187 |
-
public function load_recommended_partners() {
|
| 188 |
-
add_filter(
|
| 189 |
-
'wpforms_upgrade_link',
|
| 190 |
-
function ( $url ) {
|
| 191 |
-
return 'http://www.shareasale.com/r.cfm?B=837827&U=848264&M=64312&urllink=' . rawurlencode( $url );
|
| 192 |
-
}
|
| 193 |
-
);
|
| 194 |
-
|
| 195 |
-
if ( get_option( 'translatepress_avg_affiliate_id', false ) === false ) {
|
| 196 |
-
update_option( 'translatepress_avg_affiliate_id', '91096' );
|
| 197 |
-
}
|
| 198 |
-
|
| 199 |
-
}
|
| 200 |
-
|
| 201 |
/**
|
| 202 |
* Calls the orbit_fox_modules hook.
|
| 203 |
*
|
| 181 |
}
|
| 182 |
}
|
| 183 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 184 |
/**
|
| 185 |
* Calls the orbit_fox_modules hook.
|
| 186 |
*
|
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.9.
|
| 73 |
|
| 74 |
$this->load_dependencies();
|
| 75 |
$this->set_locale();
|
|
@@ -182,7 +182,6 @@ class Orbit_Fox {
|
|
| 182 |
$this->loader->add_action( 'admin_menu', $plugin_admin, 'menu_pages' );
|
| 183 |
$this->loader->add_action( 'admin_notices', $plugin_admin, 'visit_dashboard_notice' );
|
| 184 |
$this->loader->add_action( 'obfx_recommended_plugins', $plugin_admin, 'load_recommended_plugins' );
|
| 185 |
-
$this->loader->add_action( 'admin_init', $plugin_admin, 'load_recommended_partners' );
|
| 186 |
$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
|
| 187 |
$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' );
|
| 188 |
$this->loader->add_action( 'wp_ajax_obfx_update_module_options', $plugin_admin, 'obfx_update_module_options' );
|
| 69 |
|
| 70 |
$this->plugin_name = 'orbit-fox';
|
| 71 |
|
| 72 |
+
$this->version = '2.9.14';
|
| 73 |
|
| 74 |
$this->load_dependencies();
|
| 75 |
$this->set_locale();
|
| 182 |
$this->loader->add_action( 'admin_menu', $plugin_admin, 'menu_pages' );
|
| 183 |
$this->loader->add_action( 'admin_notices', $plugin_admin, 'visit_dashboard_notice' );
|
| 184 |
$this->loader->add_action( 'obfx_recommended_plugins', $plugin_admin, 'load_recommended_plugins' );
|
|
|
|
| 185 |
$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
|
| 186 |
$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' );
|
| 187 |
$this->loader->add_action( 'wp_ajax_obfx_update_module_options', $plugin_admin, 'obfx_update_module_options' );
|
readme.md
CHANGED
|
@@ -109,6 +109,13 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
|
|
| 109 |
|
| 110 |
## Changelog ##
|
| 111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
##### [Version 2.9.13](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.12...v2.9.13) (2020-08-04)
|
| 113 |
|
| 114 |
- Removed Starter Sites library and import process used for the Neve theme
|
| 109 |
|
| 110 |
## Changelog ##
|
| 111 |
|
| 112 |
+
##### [Version 2.9.14](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.13...v2.9.14) (2020-08-07)
|
| 113 |
+
|
| 114 |
+
- Remove affiliate link
|
| 115 |
+
|
| 116 |
+
|
| 117 |
+
|
| 118 |
+
|
| 119 |
##### [Version 2.9.13](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.12...v2.9.13) (2020-08-04)
|
| 120 |
|
| 121 |
- Removed Starter Sites library and import process used for the Neve theme
|
readme.txt
CHANGED
|
@@ -109,6 +109,13 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
|
|
| 109 |
|
| 110 |
== Changelog ==
|
| 111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
##### [Version 2.9.13](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.12...v2.9.13) (2020-08-04)
|
| 113 |
|
| 114 |
- Removed Starter Sites library and import process used for the Neve theme
|
| 109 |
|
| 110 |
== Changelog ==
|
| 111 |
|
| 112 |
+
##### [Version 2.9.14](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.13...v2.9.14) (2020-08-07)
|
| 113 |
+
|
| 114 |
+
- Remove affiliate link
|
| 115 |
+
|
| 116 |
+
|
| 117 |
+
|
| 118 |
+
|
| 119 |
##### [Version 2.9.13](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.12...v2.9.13) (2020-08-04)
|
| 120 |
|
| 121 |
- Removed Starter Sites library and import process used for the Neve theme
|
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.9.
|
| 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.9.14
|
| 19 |
* Author: Themeisle
|
| 20 |
* Author URI: https://orbitfox.com/
|
| 21 |
* License: GPL-2.0+
|
vendor/autoload.php
CHANGED
|
@@ -4,4 +4,4 @@
|
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
-
return
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
+
return ComposerAutoloaderInit5d4e221e58630f2f2c0138ce59c9393a::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
|
@@ -22,15 +22,15 @@ class ComposerAutoloaderInit2a1cccd14037edb023a18d5cc807dc24
|
|
| 22 |
return self::$loader;
|
| 23 |
}
|
| 24 |
|
| 25 |
-
spl_autoload_register(array('
|
| 26 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 27 |
-
spl_autoload_unregister(array('
|
| 28 |
|
| 29 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 30 |
if ($useStaticLoader) {
|
| 31 |
require_once __DIR__ . '/autoload_static.php';
|
| 32 |
|
| 33 |
-
call_user_func(\Composer\Autoload\
|
| 34 |
} else {
|
| 35 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 36 |
foreach ($map as $namespace => $path) {
|
|
@@ -51,19 +51,19 @@ class ComposerAutoloaderInit2a1cccd14037edb023a18d5cc807dc24
|
|
| 51 |
$loader->register(true);
|
| 52 |
|
| 53 |
if ($useStaticLoader) {
|
| 54 |
-
$includeFiles = Composer\Autoload\
|
| 55 |
} else {
|
| 56 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 57 |
}
|
| 58 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 59 |
-
|
| 60 |
}
|
| 61 |
|
| 62 |
return $loader;
|
| 63 |
}
|
| 64 |
}
|
| 65 |
|
| 66 |
-
function
|
| 67 |
{
|
| 68 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 69 |
require $file;
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInit5d4e221e58630f2f2c0138ce59c9393a
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 22 |
return self::$loader;
|
| 23 |
}
|
| 24 |
|
| 25 |
+
spl_autoload_register(array('ComposerAutoloaderInit5d4e221e58630f2f2c0138ce59c9393a', 'loadClassLoader'), true, true);
|
| 26 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 27 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit5d4e221e58630f2f2c0138ce59c9393a', 'loadClassLoader'));
|
| 28 |
|
| 29 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 30 |
if ($useStaticLoader) {
|
| 31 |
require_once __DIR__ . '/autoload_static.php';
|
| 32 |
|
| 33 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit5d4e221e58630f2f2c0138ce59c9393a::getInitializer($loader));
|
| 34 |
} else {
|
| 35 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 36 |
foreach ($map as $namespace => $path) {
|
| 51 |
$loader->register(true);
|
| 52 |
|
| 53 |
if ($useStaticLoader) {
|
| 54 |
+
$includeFiles = Composer\Autoload\ComposerStaticInit5d4e221e58630f2f2c0138ce59c9393a::$files;
|
| 55 |
} else {
|
| 56 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 57 |
}
|
| 58 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 59 |
+
composerRequire5d4e221e58630f2f2c0138ce59c9393a($fileIdentifier, $file);
|
| 60 |
}
|
| 61 |
|
| 62 |
return $loader;
|
| 63 |
}
|
| 64 |
}
|
| 65 |
|
| 66 |
+
function composerRequire5d4e221e58630f2f2c0138ce59c9393a($fileIdentifier, $file)
|
| 67 |
{
|
| 68 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 69 |
require $file;
|
vendor/composer/autoload_static.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
-
class
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
|
@@ -263,9 +263,9 @@ class ComposerStaticInit2a1cccd14037edb023a18d5cc807dc24
|
|
| 263 |
public static function getInitializer(ClassLoader $loader)
|
| 264 |
{
|
| 265 |
return \Closure::bind(function () use ($loader) {
|
| 266 |
-
$loader->prefixLengthsPsr4 =
|
| 267 |
-
$loader->prefixDirsPsr4 =
|
| 268 |
-
$loader->classMap =
|
| 269 |
|
| 270 |
}, null, ClassLoader::class);
|
| 271 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInit5d4e221e58630f2f2c0138ce59c9393a
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
| 263 |
public static function getInitializer(ClassLoader $loader)
|
| 264 |
{
|
| 265 |
return \Closure::bind(function () use ($loader) {
|
| 266 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit5d4e221e58630f2f2c0138ce59c9393a::$prefixLengthsPsr4;
|
| 267 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit5d4e221e58630f2f2c0138ce59c9393a::$prefixDirsPsr4;
|
| 268 |
+
$loader->classMap = ComposerStaticInit5d4e221e58630f2f2c0138ce59c9393a::$classMap;
|
| 269 |
|
| 270 |
}, null, ClassLoader::class);
|
| 271 |
}
|
