Version Description
Download this release
Release Info
Developer | themeisle |
Plugin | Orbit Fox by ThemeIsle |
Version | 2.9.2 |
Comparing to | |
See all releases |
Code changes from version 2.9.1 to 2.9.2
- CHANGELOG.md +5 -0
- core/includes/class-orbit-fox.php +1 -1
- obfx_modules/gutenberg-blocks/init.php +5 -0
- obfx_modules/policy-notice/init.php +33 -9
- readme.md +8 -0
- readme.txt +8 -0
- themeisle-companion.php +1 -1
- vendor/autoload.php +1 -1
- vendor/codeinwp/gutenberg-blocks/CHANGELOG.md +4 -0
- vendor/codeinwp/gutenberg-blocks/inc/class-main.php +1 -1
- vendor/codeinwp/gutenberg-blocks/load.php +12 -0
- vendor/composer/autoload_classmap.php +0 -18
- vendor/composer/autoload_psr4.php +0 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +4 -30
- vendor/composer/installed.json +6 -11
CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
1 |
##### [Version 2.9.1](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.0...v2.9.1) (2020-02-05)
|
2 |
|
3 |
* Fix possible error with edge case legacy module loading.
|
1 |
+
##### [Version 2.9.2](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.1...v2.9.2) (2020-02-13)
|
2 |
+
|
3 |
+
* Fix issue with cookie notices closing behavior.
|
4 |
+
* Fix notice when Otter and Orbit Fox were both active.
|
5 |
+
|
6 |
##### [Version 2.9.1](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.0...v2.9.1) (2020-02-05)
|
7 |
|
8 |
* Fix possible error with edge case legacy module loading.
|
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();
|
69 |
|
70 |
$this->plugin_name = 'orbit-fox';
|
71 |
|
72 |
+
$this->version = '2.9.2';
|
73 |
|
74 |
$this->load_dependencies();
|
75 |
$this->set_locale();
|
obfx_modules/gutenberg-blocks/init.php
CHANGED
@@ -71,6 +71,7 @@ class Gutenberg_Blocks_OBFX_Module extends Orbit_Fox_Module_Abstract {
|
|
71 |
public function hooks() {
|
72 |
$this->loader->add_action( 'enqueue_block_assets', $this, 'enqueue_block_assets' );
|
73 |
$this->loader->add_action( 'init', $this, 'load_gutenberg_blocks' );
|
|
|
74 |
}
|
75 |
|
76 |
/**
|
@@ -120,6 +121,10 @@ class Gutenberg_Blocks_OBFX_Module extends Orbit_Fox_Module_Abstract {
|
|
120 |
* If the composer library is present let's try to init.
|
121 |
*/
|
122 |
public function load_gutenberg_blocks() {
|
|
|
|
|
|
|
|
|
123 |
\ThemeIsle\GutenbergBlocks\Main::instance( __( 'Blocks by OrbitFox and Otter', 'themeisle-companion' ) );
|
124 |
}
|
125 |
|
71 |
public function hooks() {
|
72 |
$this->loader->add_action( 'enqueue_block_assets', $this, 'enqueue_block_assets' );
|
73 |
$this->loader->add_action( 'init', $this, 'load_gutenberg_blocks' );
|
74 |
+
|
75 |
}
|
76 |
|
77 |
/**
|
121 |
* If the composer library is present let's try to init.
|
122 |
*/
|
123 |
public function load_gutenberg_blocks() {
|
124 |
+
$file = OBX_PATH . '/vendor/codeinwp/gutenberg-blocks/load.php';
|
125 |
+
if ( is_file( $file ) ) {
|
126 |
+
require_once $file;
|
127 |
+
}
|
128 |
\ThemeIsle\GutenbergBlocks\Main::instance( __( 'Blocks by OrbitFox and Otter', 'themeisle-companion' ) );
|
129 |
}
|
130 |
|
obfx_modules/policy-notice/init.php
CHANGED
@@ -180,7 +180,7 @@ class Policy_Notice_OBFX_Module extends Orbit_Fox_Module_Abstract {
|
|
180 |
|
181 |
// @TODO maybe think at some template system for a further hookable customization.
|
182 |
// message output will start with a wrapper and an input tag which will decide if the template is visible or not
|
183 |
-
$output = '<div class="obfx-cookie-bar-container"><input class="obfx-checkbox-cb" id="obfx-checkbox-cb" type="checkbox" />';
|
184 |
|
185 |
// we'll add the buttons as a separate var and we'll start with the close button
|
186 |
$buttons = '<label for="obfx-checkbox-cb" class="obfx-close-cb">X</label>';
|
@@ -190,9 +190,15 @@ class Policy_Notice_OBFX_Module extends Orbit_Fox_Module_Abstract {
|
|
190 |
$buttons .= '<a href="' . $policy_link . '" >' . $policy_button . '</a>';
|
191 |
|
192 |
// combine the buttons with the bar and close the wrapper.
|
193 |
-
$output
|
194 |
-
|
195 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
}
|
197 |
|
198 |
/**
|
@@ -203,7 +209,25 @@ class Policy_Notice_OBFX_Module extends Orbit_Fox_Module_Abstract {
|
|
203 |
<script>
|
204 |
(function (window) {
|
205 |
|
206 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
e.preventDefault();
|
208 |
var days = 365;
|
209 |
var date = new Date();
|
@@ -226,13 +250,13 @@ class Policy_Notice_OBFX_Module extends Orbit_Fox_Module_Abstract {
|
|
226 |
/**
|
227 |
* This modules needs a few CSS lines so there is no need to load a file for it.
|
228 |
*/
|
229 |
-
public function wp_print_footer_style() {
|
230 |
?>
|
231 |
<style>
|
232 |
.obfx-cookie-bar-container {
|
233 |
height: 0;
|
234 |
}
|
235 |
-
|
236 |
.obfx-checkbox-cb {
|
237 |
display: none;
|
238 |
}
|
@@ -269,7 +293,7 @@ class Policy_Notice_OBFX_Module extends Orbit_Fox_Module_Abstract {
|
|
269 |
cursor: pointer;
|
270 |
}
|
271 |
</style>
|
272 |
-
<?php
|
273 |
}
|
274 |
|
275 |
/**
|
@@ -346,7 +370,7 @@ class Policy_Notice_OBFX_Module extends Orbit_Fox_Module_Abstract {
|
|
346 |
'child_of' => 0,
|
347 |
'selected' => 0,
|
348 |
'value_field' => 'ID',
|
349 |
-
)
|
350 |
);
|
351 |
|
352 |
if ( empty( $pages ) ) {
|
180 |
|
181 |
// @TODO maybe think at some template system for a further hookable customization.
|
182 |
// message output will start with a wrapper and an input tag which will decide if the template is visible or not
|
183 |
+
$output = '<div class="obfx-cookie-bar-container" id="obfx-cookie-bar"><input class="obfx-checkbox-cb" id="obfx-checkbox-cb" type="checkbox" />';
|
184 |
|
185 |
// we'll add the buttons as a separate var and we'll start with the close button
|
186 |
$buttons = '<label for="obfx-checkbox-cb" class="obfx-close-cb">X</label>';
|
190 |
$buttons .= '<a href="' . $policy_link . '" >' . $policy_button . '</a>';
|
191 |
|
192 |
// combine the buttons with the bar and close the wrapper.
|
193 |
+
$output .= '<span class="obfx-cookie-bar">' . $policy_text . $buttons . '</span></div>';
|
194 |
+
$allowed_html = wp_kses_allowed_html( 'post' );
|
195 |
+
$allowed_html['input'] = [
|
196 |
+
'class' => [],
|
197 |
+
'id' => [],
|
198 |
+
'type' => [],
|
199 |
+
];
|
200 |
+
|
201 |
+
echo wp_kses( apply_filters( 'obfx_cookie_notice_output', $output, $options ), $allowed_html );
|
202 |
}
|
203 |
|
204 |
/**
|
209 |
<script>
|
210 |
(function (window) {
|
211 |
|
212 |
+
function getCookie(cname) {
|
213 |
+
var name = cname + "=";
|
214 |
+
var ca = document.cookie.split(';');
|
215 |
+
for(var i = 0; i < ca.length; i++) {
|
216 |
+
var c = ca[i];
|
217 |
+
while (c.charAt(0) == ' ') {
|
218 |
+
c = c.substring(1);
|
219 |
+
}
|
220 |
+
if (c.indexOf(name) == 0) {
|
221 |
+
return c.substring(name.length, c.length);
|
222 |
+
}
|
223 |
+
}
|
224 |
+
return "";
|
225 |
+
}
|
226 |
+
let cookie = getCookie('obfx-policy-consent');
|
227 |
+
if(cookie === 'accepted'){
|
228 |
+
document.getElementById('obfx-cookie-bar').style.display = 'none';
|
229 |
+
}
|
230 |
+
document.getElementById('obfx-accept-cookie-policy').addEventListener('click', function (e) {
|
231 |
e.preventDefault();
|
232 |
var days = 365;
|
233 |
var date = new Date();
|
250 |
/**
|
251 |
* This modules needs a few CSS lines so there is no need to load a file for it.
|
252 |
*/
|
253 |
+
public function wp_print_footer_style() {
|
254 |
?>
|
255 |
<style>
|
256 |
.obfx-cookie-bar-container {
|
257 |
height: 0;
|
258 |
}
|
259 |
+
|
260 |
.obfx-checkbox-cb {
|
261 |
display: none;
|
262 |
}
|
293 |
cursor: pointer;
|
294 |
}
|
295 |
</style>
|
296 |
+
<?php
|
297 |
}
|
298 |
|
299 |
/**
|
370 |
'child_of' => 0,
|
371 |
'selected' => 0,
|
372 |
'value_field' => 'ID',
|
373 |
+
)
|
374 |
);
|
375 |
|
376 |
if ( empty( $pages ) ) {
|
readme.md
CHANGED
@@ -109,6 +109,14 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
|
|
109 |
|
110 |
## Changelog ##
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
##### [Version 2.9.1](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.0...v2.9.1) (2020-02-05)
|
113 |
|
114 |
* Fix possible error with edge case legacy module loading.
|
109 |
|
110 |
## Changelog ##
|
111 |
|
112 |
+
##### [Version 2.9.2](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.1...v2.9.2) (2020-02-13)
|
113 |
+
|
114 |
+
* Fix issue with cookie notices closing behavior.
|
115 |
+
* Fix notice when Otter and Orbit Fox were both active.
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
##### [Version 2.9.1](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.0...v2.9.1) (2020-02-05)
|
121 |
|
122 |
* Fix possible error with edge case legacy module loading.
|
readme.txt
CHANGED
@@ -109,6 +109,14 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
##### [Version 2.9.1](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.0...v2.9.1) (2020-02-05)
|
113 |
|
114 |
* Fix possible error with edge case legacy module loading.
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
##### [Version 2.9.2](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.1...v2.9.2) (2020-02-13)
|
113 |
+
|
114 |
+
* Fix issue with cookie notices closing behavior.
|
115 |
+
* Fix notice when Otter and Orbit Fox were both active.
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
|
120 |
##### [Version 2.9.1](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.0...v2.9.1) (2020-02-05)
|
121 |
|
122 |
* Fix possible error with edge case legacy 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.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.2
|
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 ComposerAutoloaderInit9bbfa19969dd505434af7d564f50eae1::getLoader();
|
vendor/codeinwp/gutenberg-blocks/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
##### [Version 1.3.5](https://github.com/Codeinwp/gutenberg-blocks/compare/v1.3.4...v1.3.5) (2020-02-03)
|
2 |
|
3 |
* Fix issue with library autoloading in different plugins
|
1 |
+
##### [Version 1.3.6](https://github.com/Codeinwp/gutenberg-blocks/compare/v1.3.5...v1.3.6) (2020-02-13)
|
2 |
+
|
3 |
+
* Fix library autoloading in multiple plugins
|
4 |
+
|
5 |
##### [Version 1.3.5](https://github.com/Codeinwp/gutenberg-blocks/compare/v1.3.4...v1.3.5) (2020-02-03)
|
6 |
|
7 |
* Fix issue with library autoloading in different plugins
|
vendor/codeinwp/gutenberg-blocks/inc/class-main.php
CHANGED
@@ -48,7 +48,7 @@ class Main {
|
|
48 |
*/
|
49 |
public function init() {
|
50 |
if ( ! defined( 'THEMEISLE_BLOCKS_VERSION' ) ) {
|
51 |
-
define( 'THEMEISLE_BLOCKS_VERSION', '1.3.
|
52 |
define( 'THEMEISLE_BLOCKS_DEV', false );
|
53 |
}
|
54 |
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_block_editor_assets' ) );
|
48 |
*/
|
49 |
public function init() {
|
50 |
if ( ! defined( 'THEMEISLE_BLOCKS_VERSION' ) ) {
|
51 |
+
define( 'THEMEISLE_BLOCKS_VERSION', '1.3.6' );
|
52 |
define( 'THEMEISLE_BLOCKS_DEV', false );
|
53 |
}
|
54 |
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_block_editor_assets' ) );
|
vendor/codeinwp/gutenberg-blocks/load.php
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Gutenberg Blocks on demand loading file.
|
4 |
+
*
|
5 |
+
* @package Gutenberg Blocks
|
6 |
+
*/
|
7 |
+
|
8 |
+
// Load autoloader and register the namespace.
|
9 |
+
require_once dirname( __FILE__ ) . '/autoloader.php';
|
10 |
+
$autoloader = new \ThemeIsle\GutenbergBlocks\Autoloader();
|
11 |
+
$autoloader->add_namespace( '\ThemeIsle\GutenbergBlocks', dirname( __FILE__ ) . '/inc/' );
|
12 |
+
$autoloader->register();
|
vendor/composer/autoload_classmap.php
CHANGED
@@ -140,24 +140,6 @@ return array(
|
|
140 |
'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
|
141 |
'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
|
142 |
'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
|
143 |
-
'ThemeIsle\\GutenbergBlocks\\Base_Block' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/class-base-block.php',
|
144 |
-
'ThemeIsle\\GutenbergBlocks\\Base_CSS' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/class-base-css.php',
|
145 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Block_Frontend' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/css/class-block-frontend.php',
|
146 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Blocks\\Advanced_Column_CSS' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/css/blocks/class-advanced-column-css.php',
|
147 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Blocks\\Advanced_Columns_CSS' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/css/blocks/class-advanced-columns-css.php',
|
148 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Blocks\\Advanced_Heading_CSS' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/css/blocks/class-advanced-heading-css.php',
|
149 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Blocks\\Button_Group_CSS' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/css/blocks/class-button-group-css.php',
|
150 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Blocks\\Font_Awesome_Icons_CSS' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/css/blocks/class-font-awesome-icons-css.php',
|
151 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\CSS_Handler' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/css/class-css-handler.php',
|
152 |
-
'ThemeIsle\\GutenbergBlocks\\Main' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/class-main.php',
|
153 |
-
'ThemeIsle\\GutenbergBlocks\\Plugins\\Options_Settings' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/plugins/class-options-settings.php',
|
154 |
-
'ThemeIsle\\GutenbergBlocks\\Render\\About_Author_Block' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/render/class-about-author-block.php',
|
155 |
-
'ThemeIsle\\GutenbergBlocks\\Render\\Google_Map_Block' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/render/class-google-map-block.php',
|
156 |
-
'ThemeIsle\\GutenbergBlocks\\Render\\Plugin_Card_Block' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/render/class-plugin-card-block.php',
|
157 |
-
'ThemeIsle\\GutenbergBlocks\\Render\\Posts_Grid_Block' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/render/class-posts-grid-block.php',
|
158 |
-
'ThemeIsle\\GutenbergBlocks\\Render\\Sharing_Icons_Block' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/render/class-sharing-icons-block.php',
|
159 |
-
'ThemeIsle\\GutenbergBlocks\\Server\\Plugin_Card_Server' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/server/class-plugin-card-server.php',
|
160 |
-
'ThemeIsle\\GutenbergBlocks\\Server\\Template_Library_Server' => $vendorDir . '/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php',
|
161 |
'tubalmartin\\CssMin\\Colors' => $vendorDir . '/tubalmartin/cssmin/src/Colors.php',
|
162 |
'tubalmartin\\CssMin\\Command' => $vendorDir . '/tubalmartin/cssmin/src/Command.php',
|
163 |
'tubalmartin\\CssMin\\Minifier' => $vendorDir . '/tubalmartin/cssmin/src/Minifier.php',
|
140 |
'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
|
141 |
'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
|
142 |
'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
'tubalmartin\\CssMin\\Colors' => $vendorDir . '/tubalmartin/cssmin/src/Colors.php',
|
144 |
'tubalmartin\\CssMin\\Command' => $vendorDir . '/tubalmartin/cssmin/src/Command.php',
|
145 |
'tubalmartin\\CssMin\\Minifier' => $vendorDir . '/tubalmartin/cssmin/src/Minifier.php',
|
vendor/composer/autoload_psr4.php
CHANGED
@@ -7,7 +7,6 @@ $baseDir = dirname($vendorDir);
|
|
7 |
|
8 |
return array(
|
9 |
'tubalmartin\\CssMin\\' => array($vendorDir . '/tubalmartin/cssmin/src'),
|
10 |
-
'ThemeIsle\\GutenbergBlocks\\' => array($vendorDir . '/codeinwp/gutenberg-blocks/inc'),
|
11 |
'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'),
|
12 |
'MailerLiteApi\\' => array($vendorDir . '/mailerlite/mailerlite-api-v2-php-sdk/src'),
|
13 |
'Http\\Promise\\' => array($vendorDir . '/php-http/promise/src'),
|
7 |
|
8 |
return array(
|
9 |
'tubalmartin\\CssMin\\' => array($vendorDir . '/tubalmartin/cssmin/src'),
|
|
|
10 |
'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'),
|
11 |
'MailerLiteApi\\' => array($vendorDir . '/mailerlite/mailerlite-api-v2-php-sdk/src'),
|
12 |
'Http\\Promise\\' => array($vendorDir . '/php-http/promise/src'),
|
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 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit30ab55facc459163b0f79f1c5c46b092
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
@@ -48,19 +48,19 @@ class ComposerAutoloaderInit30ab55facc459163b0f79f1c5c46b092
|
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
-
$includeFiles = Composer\Autoload\
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
-
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
-
function
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit9bbfa19969dd505434af7d564f50eae1
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit9bbfa19969dd505434af7d564f50eae1', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit9bbfa19969dd505434af7d564f50eae1', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit9bbfa19969dd505434af7d564f50eae1::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
+
$includeFiles = Composer\Autoload\ComposerStaticInit9bbfa19969dd505434af7d564f50eae1::$files;
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
+
composerRequire9bbfa19969dd505434af7d564f50eae1($fileIdentifier, $file);
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
+
function composerRequire9bbfa19969dd505434af7d564f50eae1($fileIdentifier, $file)
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
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',
|
@@ -24,10 +24,6 @@ class ComposerStaticInit30ab55facc459163b0f79f1c5c46b092
|
|
24 |
array (
|
25 |
'tubalmartin\\CssMin\\' => 19,
|
26 |
),
|
27 |
-
'T' =>
|
28 |
-
array (
|
29 |
-
'ThemeIsle\\GutenbergBlocks\\' => 26,
|
30 |
-
),
|
31 |
'P' =>
|
32 |
array (
|
33 |
'Psr\\Http\\Message\\' => 17,
|
@@ -59,10 +55,6 @@ class ComposerStaticInit30ab55facc459163b0f79f1c5c46b092
|
|
59 |
array (
|
60 |
0 => __DIR__ . '/..' . '/tubalmartin/cssmin/src',
|
61 |
),
|
62 |
-
'ThemeIsle\\GutenbergBlocks\\' =>
|
63 |
-
array (
|
64 |
-
0 => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc',
|
65 |
-
),
|
66 |
'Psr\\Http\\Message\\' =>
|
67 |
array (
|
68 |
0 => __DIR__ . '/..' . '/psr/http-message/src',
|
@@ -237,24 +229,6 @@ class ComposerStaticInit30ab55facc459163b0f79f1c5c46b092
|
|
237 |
'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php',
|
238 |
'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php',
|
239 |
'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php',
|
240 |
-
'ThemeIsle\\GutenbergBlocks\\Base_Block' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/class-base-block.php',
|
241 |
-
'ThemeIsle\\GutenbergBlocks\\Base_CSS' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/class-base-css.php',
|
242 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Block_Frontend' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/css/class-block-frontend.php',
|
243 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Blocks\\Advanced_Column_CSS' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/css/blocks/class-advanced-column-css.php',
|
244 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Blocks\\Advanced_Columns_CSS' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/css/blocks/class-advanced-columns-css.php',
|
245 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Blocks\\Advanced_Heading_CSS' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/css/blocks/class-advanced-heading-css.php',
|
246 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Blocks\\Button_Group_CSS' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/css/blocks/class-button-group-css.php',
|
247 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\Blocks\\Font_Awesome_Icons_CSS' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/css/blocks/class-font-awesome-icons-css.php',
|
248 |
-
'ThemeIsle\\GutenbergBlocks\\CSS\\CSS_Handler' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/css/class-css-handler.php',
|
249 |
-
'ThemeIsle\\GutenbergBlocks\\Main' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/class-main.php',
|
250 |
-
'ThemeIsle\\GutenbergBlocks\\Plugins\\Options_Settings' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/plugins/class-options-settings.php',
|
251 |
-
'ThemeIsle\\GutenbergBlocks\\Render\\About_Author_Block' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/render/class-about-author-block.php',
|
252 |
-
'ThemeIsle\\GutenbergBlocks\\Render\\Google_Map_Block' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/render/class-google-map-block.php',
|
253 |
-
'ThemeIsle\\GutenbergBlocks\\Render\\Plugin_Card_Block' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/render/class-plugin-card-block.php',
|
254 |
-
'ThemeIsle\\GutenbergBlocks\\Render\\Posts_Grid_Block' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/render/class-posts-grid-block.php',
|
255 |
-
'ThemeIsle\\GutenbergBlocks\\Render\\Sharing_Icons_Block' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/render/class-sharing-icons-block.php',
|
256 |
-
'ThemeIsle\\GutenbergBlocks\\Server\\Plugin_Card_Server' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/server/class-plugin-card-server.php',
|
257 |
-
'ThemeIsle\\GutenbergBlocks\\Server\\Template_Library_Server' => __DIR__ . '/..' . '/codeinwp/gutenberg-blocks/inc/server/class-template-library-server.php',
|
258 |
'tubalmartin\\CssMin\\Colors' => __DIR__ . '/..' . '/tubalmartin/cssmin/src/Colors.php',
|
259 |
'tubalmartin\\CssMin\\Command' => __DIR__ . '/..' . '/tubalmartin/cssmin/src/Command.php',
|
260 |
'tubalmartin\\CssMin\\Minifier' => __DIR__ . '/..' . '/tubalmartin/cssmin/src/Minifier.php',
|
@@ -264,9 +238,9 @@ class ComposerStaticInit30ab55facc459163b0f79f1c5c46b092
|
|
264 |
public static function getInitializer(ClassLoader $loader)
|
265 |
{
|
266 |
return \Closure::bind(function () use ($loader) {
|
267 |
-
$loader->prefixLengthsPsr4 =
|
268 |
-
$loader->prefixDirsPsr4 =
|
269 |
-
$loader->classMap =
|
270 |
|
271 |
}, null, ClassLoader::class);
|
272 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit9bbfa19969dd505434af7d564f50eae1
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
24 |
array (
|
25 |
'tubalmartin\\CssMin\\' => 19,
|
26 |
),
|
|
|
|
|
|
|
|
|
27 |
'P' =>
|
28 |
array (
|
29 |
'Psr\\Http\\Message\\' => 17,
|
55 |
array (
|
56 |
0 => __DIR__ . '/..' . '/tubalmartin/cssmin/src',
|
57 |
),
|
|
|
|
|
|
|
|
|
58 |
'Psr\\Http\\Message\\' =>
|
59 |
array (
|
60 |
0 => __DIR__ . '/..' . '/psr/http-message/src',
|
229 |
'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php',
|
230 |
'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php',
|
231 |
'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
'tubalmartin\\CssMin\\Colors' => __DIR__ . '/..' . '/tubalmartin/cssmin/src/Colors.php',
|
233 |
'tubalmartin\\CssMin\\Command' => __DIR__ . '/..' . '/tubalmartin/cssmin/src/Command.php',
|
234 |
'tubalmartin\\CssMin\\Minifier' => __DIR__ . '/..' . '/tubalmartin/cssmin/src/Minifier.php',
|
238 |
public static function getInitializer(ClassLoader $loader)
|
239 |
{
|
240 |
return \Closure::bind(function () use ($loader) {
|
241 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit9bbfa19969dd505434af7d564f50eae1::$prefixLengthsPsr4;
|
242 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit9bbfa19969dd505434af7d564f50eae1::$prefixDirsPsr4;
|
243 |
+
$loader->classMap = ComposerStaticInit9bbfa19969dd505434af7d564f50eae1::$classMap;
|
244 |
|
245 |
}, null, ClassLoader::class);
|
246 |
}
|
vendor/composer/installed.json
CHANGED
@@ -128,17 +128,17 @@
|
|
128 |
},
|
129 |
{
|
130 |
"name": "codeinwp/gutenberg-blocks",
|
131 |
-
"version": "1.3.
|
132 |
-
"version_normalized": "1.3.
|
133 |
"source": {
|
134 |
"type": "git",
|
135 |
"url": "https://github.com/Codeinwp/gutenberg-blocks.git",
|
136 |
-
"reference": "
|
137 |
},
|
138 |
"dist": {
|
139 |
"type": "zip",
|
140 |
-
"url": "https://api.github.com/repos/Codeinwp/gutenberg-blocks/zipball/
|
141 |
-
"reference": "
|
142 |
"shasum": ""
|
143 |
},
|
144 |
"require": {
|
@@ -151,17 +151,12 @@
|
|
151 |
"squizlabs/php_codesniffer": "^3.3",
|
152 |
"wp-coding-standards/wpcs": "^1"
|
153 |
},
|
154 |
-
"time": "2020-02-
|
155 |
"type": "library",
|
156 |
"extra": {
|
157 |
"installer-disable": "true"
|
158 |
},
|
159 |
"installation-source": "dist",
|
160 |
-
"autoload": {
|
161 |
-
"psr-4": {
|
162 |
-
"ThemeIsle\\GutenbergBlocks\\": "inc/"
|
163 |
-
}
|
164 |
-
},
|
165 |
"notification-url": "https://packagist.org/downloads/",
|
166 |
"license": [
|
167 |
"GPL-2.0-or-later"
|
128 |
},
|
129 |
{
|
130 |
"name": "codeinwp/gutenberg-blocks",
|
131 |
+
"version": "1.3.6",
|
132 |
+
"version_normalized": "1.3.6.0",
|
133 |
"source": {
|
134 |
"type": "git",
|
135 |
"url": "https://github.com/Codeinwp/gutenberg-blocks.git",
|
136 |
+
"reference": "dbf5ed8cc9c4df1035ca6c127fb41a66e970d983"
|
137 |
},
|
138 |
"dist": {
|
139 |
"type": "zip",
|
140 |
+
"url": "https://api.github.com/repos/Codeinwp/gutenberg-blocks/zipball/dbf5ed8cc9c4df1035ca6c127fb41a66e970d983",
|
141 |
+
"reference": "dbf5ed8cc9c4df1035ca6c127fb41a66e970d983",
|
142 |
"shasum": ""
|
143 |
},
|
144 |
"require": {
|
151 |
"squizlabs/php_codesniffer": "^3.3",
|
152 |
"wp-coding-standards/wpcs": "^1"
|
153 |
},
|
154 |
+
"time": "2020-02-13T12:51:18+00:00",
|
155 |
"type": "library",
|
156 |
"extra": {
|
157 |
"installer-disable": "true"
|
158 |
},
|
159 |
"installation-source": "dist",
|
|
|
|
|
|
|
|
|
|
|
160 |
"notification-url": "https://packagist.org/downloads/",
|
161 |
"license": [
|
162 |
"GPL-2.0-or-later"
|