Version Description
- 2017-07-03
Download this release
Release Info
Developer | codeinwp |
Plugin | WordPress Charts and Graphs Lite |
Version | 2.1.8 |
Comparing to | |
See all releases |
Code changes from version 2.1.7 to 2.1.8
- CHANGELOG.md +5 -0
- classes/Visualizer/Plugin.php +1 -1
- classes/Visualizer/Render/Library.php +6 -1
- css/library.css +6 -0
- css/media.css +1 -1
- index.php +1 -1
- languages/visualizer.pot +17 -13
- readme.txt +6 -0
- vendor/autoload.php +1 -1
- vendor/autoload_52.php +1 -1
- vendor/codeinwp/themeisle-sdk/class-themeisle-sdk-licenser.php +23 -0
- vendor/codeinwp/themeisle-sdk/class-themeisle-sdk-widget-dashboard-blog.php +32 -17
- vendor/codeinwp/themeisle-sdk/composer.json +5 -0
- vendor/composer/autoload_files.php +1 -0
- vendor/composer/autoload_real.php +5 -5
- vendor/composer/autoload_real_52.php +4 -3
- vendor/composer/installed.json +9 -4
CHANGELOG.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1 |
|
|
|
|
|
|
|
|
|
|
|
2 |
### v2.1.7 - 2017-06-17
|
3 |
**Changes:**
|
4 |
* Updated sdk loading logic.
|
1 |
|
2 |
+
### v2.1.8 - 2017-07-03
|
3 |
+
**Changes:**
|
4 |
+
* Added chart title into library.
|
5 |
+
* Fixed SDK issues with dashboard widget.
|
6 |
+
|
7 |
### v2.1.7 - 2017-06-17
|
8 |
**Changes:**
|
9 |
* Updated sdk loading logic.
|
classes/Visualizer/Plugin.php
CHANGED
@@ -28,7 +28,7 @@
|
|
28 |
class Visualizer_Plugin {
|
29 |
|
30 |
const NAME = 'visualizer';
|
31 |
-
const VERSION = '2.1.
|
32 |
|
33 |
// custom post types
|
34 |
const CPT_VISUALIZER = 'visualizer';
|
28 |
class Visualizer_Plugin {
|
29 |
|
30 |
const NAME = 'visualizer';
|
31 |
+
const VERSION = '2.1.8';
|
32 |
|
33 |
// custom post types
|
34 |
const CPT_VISUALIZER = 'visualizer';
|
classes/Visualizer/Render/Library.php
CHANGED
@@ -159,6 +159,11 @@ class Visualizer_Render_Library extends Visualizer_Render {
|
|
159 |
* @param int $chart_id The id of the chart.
|
160 |
*/
|
161 |
private function _renderChartBox( $placeholder_id, $chart_id ) {
|
|
|
|
|
|
|
|
|
|
|
162 |
$ajax_url = admin_url( 'admin-ajax.php' );
|
163 |
$delete_url = add_query_arg( array(
|
164 |
'action' => Visualizer_Plugin::ACTION_DELETE_CHART,
|
@@ -176,7 +181,7 @@ class Visualizer_Render_Library extends Visualizer_Render {
|
|
176 |
'chart' => $chart_id,
|
177 |
'security' => wp_create_nonce( Visualizer_Plugin::ACTION_EXPORT_DATA . Visualizer_Plugin::VERSION ),
|
178 |
), admin_url( 'admin-ajax.php' ) );
|
179 |
-
echo '<div class="visualizer-chart">';
|
180 |
echo '<div id="', $placeholder_id, '" class="visualizer-chart-canvas">';
|
181 |
echo '<img src="', VISUALIZER_ABSURL, 'images/ajax-loader.gif" class="loader">';
|
182 |
echo '</div>';
|
159 |
* @param int $chart_id The id of the chart.
|
160 |
*/
|
161 |
private function _renderChartBox( $placeholder_id, $chart_id ) {
|
162 |
+
$settings = get_post_meta( $chart_id, Visualizer_Plugin::CF_SETTINGS );
|
163 |
+
$title = '#' . $chart_id;
|
164 |
+
if ( ! empty( $settings[0]['title'] ) ) {
|
165 |
+
$title = $settings[0]['title'];
|
166 |
+
}
|
167 |
$ajax_url = admin_url( 'admin-ajax.php' );
|
168 |
$delete_url = add_query_arg( array(
|
169 |
'action' => Visualizer_Plugin::ACTION_DELETE_CHART,
|
181 |
'chart' => $chart_id,
|
182 |
'security' => wp_create_nonce( Visualizer_Plugin::ACTION_EXPORT_DATA . Visualizer_Plugin::VERSION ),
|
183 |
), admin_url( 'admin-ajax.php' ) );
|
184 |
+
echo '<div class="visualizer-chart"><div class="visualizer-chart-title">', esc_html( $title ), '</div>';
|
185 |
echo '<div id="', $placeholder_id, '" class="visualizer-chart-canvas">';
|
186 |
echo '<img src="', VISUALIZER_ABSURL, 'images/ajax-loader.gif" class="loader">';
|
187 |
echo '</div>';
|
css/library.css
CHANGED
@@ -283,3 +283,9 @@ input:checked + .visualizer-slider:before {
|
|
283 |
padding-top: 20px;
|
284 |
padding-bottom: 20px;
|
285 |
}
|
|
|
|
|
|
|
|
|
|
|
|
283 |
padding-top: 20px;
|
284 |
padding-bottom: 20px;
|
285 |
}
|
286 |
+
.visualizer-chart-title{
|
287 |
+
|
288 |
+
text-align: center;
|
289 |
+
font-weight: bold;
|
290 |
+
padding-bottom: 5px;
|
291 |
+
}
|
css/media.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/*
|
2 |
-
Version: 2.1.
|
3 |
*/
|
4 |
#visualizer-library-view {
|
5 |
padding: 30px 10px 10px 30px;
|
1 |
/*
|
2 |
+
Version: 2.1.8
|
3 |
*/
|
4 |
#visualizer-library-view {
|
5 |
padding: 30px 10px 10px 30px;
|
index.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Visualizer: Charts and Graphs Lite
|
5 |
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
|
6 |
Description: A simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages. The plugin uses Google Visualization API to render charts, which supports cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases.
|
7 |
-
Version: 2.1.
|
8 |
Author: Themeisle
|
9 |
Author URI: http://themeisle.com
|
10 |
License: GPL v2.0 or later
|
4 |
Plugin Name: Visualizer: Charts and Graphs Lite
|
5 |
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
|
6 |
Description: A simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages. The plugin uses Google Visualization API to render charts, which supports cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases.
|
7 |
+
Version: 2.1.8
|
8 |
Author: Themeisle
|
9 |
Author URI: http://themeisle.com
|
10 |
License: GPL v2.0 or later
|
languages/visualizer.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the GPL v2.0 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Visualizer: Charts and Graphs Lite 2.1.
|
6 |
"Report-Msgid-Bugs-To: https://github.com/Codeinwp/visualizer/issues\n"
|
7 |
-
"POT-Creation-Date: 2017-06-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -153,49 +153,53 @@ msgstr ""
|
|
153 |
msgid "No charts found"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: classes/Visualizer/Render/Library.php:
|
|
|
|
|
|
|
|
|
157 |
#: classes/Visualizer/Render/Templates.php:68
|
158 |
msgid "Delete"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: classes/Visualizer/Render/Library.php:
|
162 |
msgid "Clone"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: classes/Visualizer/Render/Library.php:
|
166 |
msgid "Edit"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: classes/Visualizer/Render/Library.php:
|
170 |
msgid "Export"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: classes/Visualizer/Render/Library.php:
|
174 |
#: classes/Visualizer/Render/Templates.php:71
|
175 |
msgid "Click to select"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: classes/Visualizer/Render/Library.php:
|
179 |
msgid "Gain more editing power"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: classes/Visualizer/Render/Library.php:
|
183 |
msgid "Spreadsheet like editor"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: classes/Visualizer/Render/Library.php:
|
187 |
msgid "Import from other charts"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: classes/Visualizer/Render/Library.php:
|
191 |
msgid "Auto-sync with online files"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: classes/Visualizer/Render/Library.php:
|
195 |
msgid "3 more chart types"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: classes/Visualizer/Render/Library.php:
|
199 |
msgid "View more features"
|
200 |
msgstr ""
|
201 |
|
2 |
# This file is distributed under the GPL v2.0 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Visualizer: Charts and Graphs Lite 2.1.7\n"
|
6 |
"Report-Msgid-Bugs-To: https://github.com/Codeinwp/visualizer/issues\n"
|
7 |
+
"POT-Creation-Date: 2017-06-19 10:36:34+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
153 |
msgid "No charts found"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: classes/Visualizer/Render/Library.php:163
|
157 |
+
msgid "No Title"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: classes/Visualizer/Render/Library.php:189
|
161 |
#: classes/Visualizer/Render/Templates.php:68
|
162 |
msgid "Delete"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: classes/Visualizer/Render/Library.php:190
|
166 |
msgid "Clone"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: classes/Visualizer/Render/Library.php:191
|
170 |
msgid "Edit"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: classes/Visualizer/Render/Library.php:192
|
174 |
msgid "Export"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: classes/Visualizer/Render/Library.php:193
|
178 |
#: classes/Visualizer/Render/Templates.php:71
|
179 |
msgid "Click to select"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: classes/Visualizer/Render/Library.php:207
|
183 |
msgid "Gain more editing power"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: classes/Visualizer/Render/Library.php:208
|
187 |
msgid "Spreadsheet like editor"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: classes/Visualizer/Render/Library.php:209
|
191 |
msgid "Import from other charts"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: classes/Visualizer/Render/Library.php:210
|
195 |
msgid "Auto-sync with online files"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: classes/Visualizer/Render/Library.php:211
|
199 |
msgid "3 more chart types"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: classes/Visualizer/Render/Library.php:212
|
203 |
msgid "View more features"
|
204 |
msgstr ""
|
205 |
|
readme.txt
CHANGED
@@ -118,6 +118,12 @@ http://docs.themeisle.com/article/610-how-can-i-edit-the-data-manually
|
|
118 |
5. Charts library
|
119 |
|
120 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
= 2.1.7 =
|
122 |
|
123 |
* Updated sdk loading logic.
|
118 |
5. Charts library
|
119 |
|
120 |
== Changelog ==
|
121 |
+
= 2.1.8 - 2017-07-03 =
|
122 |
+
|
123 |
+
* Added chart title into library.
|
124 |
+
* Fixed SDK issues with dashboard widget.
|
125 |
+
|
126 |
+
|
127 |
= 2.1.7 =
|
128 |
|
129 |
* Updated sdk loading logic.
|
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 ComposerAutoloaderInitf2962d8ba4331e5137c3dae20c26e681::getLoader();
|
vendor/autoload_52.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInite0ffea9447daabaa40bdd6ba02f97924::getLoader();
|
vendor/codeinwp/themeisle-sdk/class-themeisle-sdk-licenser.php
CHANGED
@@ -75,6 +75,28 @@ if ( ! class_exists( 'ThemeIsle_SDK_Licenser' ) ) :
|
|
75 |
add_action( 'admin_notices', array( $this, 'show_notice' ) );
|
76 |
}
|
77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
/**
|
79 |
* Register the setting for the license of the product
|
80 |
*
|
@@ -427,6 +449,7 @@ if ( ! class_exists( 'ThemeIsle_SDK_Licenser' ) ) :
|
|
427 |
add_action( 'load-update-core.php', array( &$this, 'delete_theme_update_transient' ) );
|
428 |
add_action( 'load-themes.php', array( &$this, 'delete_theme_update_transient' ) );
|
429 |
add_action( 'load-themes.php', array( &$this, 'load_themes_screen' ) );
|
|
|
430 |
|
431 |
}
|
432 |
|
75 |
add_action( 'admin_notices', array( $this, 'show_notice' ) );
|
76 |
}
|
77 |
|
78 |
+
/**
|
79 |
+
* @param string $r Update payload.
|
80 |
+
* @param string $url The api url.
|
81 |
+
*
|
82 |
+
* @return mixed List of themes to check for update.
|
83 |
+
*/
|
84 |
+
function disable_wporg_update( $r, $url ) {
|
85 |
+
|
86 |
+
if ( 0 !== strpos( $url, 'https://api.wordpress.org/themes/update-check/' ) ) {
|
87 |
+
return $r;
|
88 |
+
}
|
89 |
+
|
90 |
+
// Decode the JSON response
|
91 |
+
$themes = json_decode( $r['body']['themes'] );
|
92 |
+
|
93 |
+
unset( $themes->themes->{ $this->product->get_slug() } );
|
94 |
+
|
95 |
+
// Encode the updated JSON response
|
96 |
+
$r['body']['themes'] = json_encode( $themes );
|
97 |
+
|
98 |
+
return $r;
|
99 |
+
}
|
100 |
/**
|
101 |
* Register the setting for the license of the product
|
102 |
*
|
449 |
add_action( 'load-update-core.php', array( &$this, 'delete_theme_update_transient' ) );
|
450 |
add_action( 'load-themes.php', array( &$this, 'delete_theme_update_transient' ) );
|
451 |
add_action( 'load-themes.php', array( &$this, 'load_themes_screen' ) );
|
452 |
+
add_filter( 'http_request_args', array( $this, 'disable_wporg_update' ), 5, 2 );
|
453 |
|
454 |
}
|
455 |
|
vendor/codeinwp/themeisle-sdk/class-themeisle-sdk-widget-dashboard-blog.php
CHANGED
@@ -22,6 +22,10 @@ if ( ! class_exists( 'ThemeIsle_SDK_Widget_Dashboard_Blog' ) ) :
|
|
22 |
* @var array instance The instances.
|
23 |
*/
|
24 |
protected $product;
|
|
|
|
|
|
|
|
|
25 |
|
26 |
/**
|
27 |
* ThemeIsle_SDK_Widget_Dashboard_Blog constructor.
|
@@ -63,31 +67,43 @@ if ( ! class_exists( 'ThemeIsle_SDK_Widget_Dashboard_Blog' ) ) :
|
|
63 |
if ( isset( $wp_meta_boxes['dashboard']['normal']['core']['themeisle'] ) ) {
|
64 |
return;
|
65 |
}
|
66 |
-
// Load SimplePie Instance
|
67 |
-
$feed = fetch_feed( $this->feeds );
|
68 |
-
// TODO report error when is an error loading the feed
|
69 |
-
if ( is_wp_error( $feed ) ) {
|
70 |
-
return '';
|
71 |
-
}
|
72 |
-
|
73 |
-
$items = $feed->get_items( 0, 5 );
|
74 |
-
foreach ( (array) $items as $item ) {
|
75 |
-
$this->items[] = array(
|
76 |
-
'title' => $item->get_title(),
|
77 |
-
'date' => $item->get_date( 'U' ),
|
78 |
-
'link' => $item->get_permalink(),
|
79 |
-
);
|
80 |
-
}
|
81 |
wp_add_dashboard_widget( 'themeisle', $this->dashboard_name, array(
|
82 |
&$this,
|
83 |
'render_dashboard_widget',
|
84 |
) );
|
85 |
}
|
86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
/**
|
88 |
* Render widget content
|
89 |
*/
|
90 |
function render_dashboard_widget() {
|
|
|
91 |
?>
|
92 |
<style type="text/css">
|
93 |
#themeisle ul {
|
@@ -146,7 +162,6 @@ if ( ! class_exists( 'ThemeIsle_SDK_Widget_Dashboard_Blog' ) ) :
|
|
146 |
text-align: center;
|
147 |
}
|
148 |
|
149 |
-
|
150 |
.ti-dw-recommend-item span {
|
151 |
color: #72777c;
|
152 |
}
|
@@ -194,7 +209,7 @@ if ( ! class_exists( 'ThemeIsle_SDK_Widget_Dashboard_Blog' ) ) :
|
|
194 |
'Lite',
|
195 |
), '', $recommend['name'] ) ); ?>
|
196 |
(<a class="thickbox open-plugin-details-modal"
|
197 |
-
|
198 |
</li>
|
199 |
|
200 |
<?php
|
22 |
* @var array instance The instances.
|
23 |
*/
|
24 |
protected $product;
|
25 |
+
/**
|
26 |
+
* @var array Feed items.
|
27 |
+
*/
|
28 |
+
private $items = array();
|
29 |
|
30 |
/**
|
31 |
* ThemeIsle_SDK_Widget_Dashboard_Blog constructor.
|
67 |
if ( isset( $wp_meta_boxes['dashboard']['normal']['core']['themeisle'] ) ) {
|
68 |
return;
|
69 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
wp_add_dashboard_widget( 'themeisle', $this->dashboard_name, array(
|
71 |
&$this,
|
72 |
'render_dashboard_widget',
|
73 |
) );
|
74 |
}
|
75 |
|
76 |
+
/**
|
77 |
+
* Setup feed items.
|
78 |
+
*/
|
79 |
+
private function setup_feeds() {
|
80 |
+
$items_normalized = array();
|
81 |
+
if ( false === ( $items_normalized = get_transient( 'themeisle_sdk_feed_items' ) ) ) {
|
82 |
+
// Load SimplePie Instance
|
83 |
+
$feed = fetch_feed( $this->feeds );
|
84 |
+
// TODO report error when is an error loading the feed
|
85 |
+
if ( is_wp_error( $feed ) ) {
|
86 |
+
return;
|
87 |
+
}
|
88 |
+
|
89 |
+
$items = $feed->get_items( 0, 5 );
|
90 |
+
foreach ( (array) $items as $item ) {
|
91 |
+
$items_normalized[] = array(
|
92 |
+
'title' => $item->get_title(),
|
93 |
+
'date' => $item->get_date( 'U' ),
|
94 |
+
'link' => $item->get_permalink(),
|
95 |
+
);
|
96 |
+
}
|
97 |
+
set_transient( 'themeisle_sdk_feed_items', $items_normalized, 48 * HOUR_IN_SECONDS );
|
98 |
+
}
|
99 |
+
$this->items = $items_normalized;
|
100 |
+
}
|
101 |
+
|
102 |
/**
|
103 |
* Render widget content
|
104 |
*/
|
105 |
function render_dashboard_widget() {
|
106 |
+
$this->setup_feeds();
|
107 |
?>
|
108 |
<style type="text/css">
|
109 |
#themeisle ul {
|
162 |
text-align: center;
|
163 |
}
|
164 |
|
|
|
165 |
.ti-dw-recommend-item span {
|
166 |
color: #72777c;
|
167 |
}
|
209 |
'Lite',
|
210 |
), '', $recommend['name'] ) ); ?>
|
211 |
(<a class="thickbox open-plugin-details-modal"
|
212 |
+
href="<?php echo $url . '&TB_iframe=true&width=600&height=500'; ?>"><?php _e( 'Install' ); ?></a>)
|
213 |
</li>
|
214 |
|
215 |
<?php
|
vendor/codeinwp/themeisle-sdk/composer.json
CHANGED
@@ -13,6 +13,11 @@
|
|
13 |
"homepage": "https://themeisle.com"
|
14 |
}
|
15 |
],
|
|
|
|
|
|
|
|
|
|
|
16 |
"support": {
|
17 |
"issues": "https://github.com/Codeinwp/themeisle-sdk/issues"
|
18 |
}
|
13 |
"homepage": "https://themeisle.com"
|
14 |
}
|
15 |
],
|
16 |
+
"autoload": {
|
17 |
+
"files": [
|
18 |
+
"load.php"
|
19 |
+
]
|
20 |
+
},
|
21 |
"support": {
|
22 |
"issues": "https://github.com/Codeinwp/themeisle-sdk/issues"
|
23 |
}
|
vendor/composer/autoload_files.php
CHANGED
@@ -6,5 +6,6 @@ $vendorDir = dirname(dirname(__FILE__));
|
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
|
|
9 |
'546a0158460e038361bb95e23e62fb24' => $vendorDir . '/codeinwp/themeisle-sdk/load.php',
|
10 |
);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
9 |
+
'957c51f8f334b5ea3be310bfb8b3492c' => $vendorDir . '/codeinwp/themeisle-sdk/load.php',
|
10 |
'546a0158460e038361bb95e23e62fb24' => $vendorDir . '/codeinwp/themeisle-sdk/load.php',
|
11 |
);
|
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,9 +19,9 @@ class ComposerAutoloaderInitaeefb1ad1610365b295b9695f98413e2
|
|
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 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
@@ -42,14 +42,14 @@ class ComposerAutoloaderInitaeefb1ad1610365b295b9695f98413e2
|
|
42 |
|
43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
45 |
-
|
46 |
}
|
47 |
|
48 |
return $loader;
|
49 |
}
|
50 |
}
|
51 |
|
52 |
-
function
|
53 |
{
|
54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
55 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInitf2962d8ba4331e5137c3dae20c26e681
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitf2962d8ba4331e5137c3dae20c26e681', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitf2962d8ba4331e5137c3dae20c26e681', '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 |
+
composerRequiref2962d8ba4331e5137c3dae20c26e681($fileIdentifier, $file);
|
46 |
}
|
47 |
|
48 |
return $loader;
|
49 |
}
|
50 |
}
|
51 |
|
52 |
+
function composerRequiref2962d8ba4331e5137c3dae20c26e681($fileIdentifier, $file)
|
53 |
{
|
54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
55 |
require $file;
|
vendor/composer/autoload_real_52.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
-
class
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit85f3c9d56eabf6425682f701683294a0 {
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
@@ -39,6 +39,7 @@ class ComposerAutoloaderInit85f3c9d56eabf6425682f701683294a0 {
|
|
39 |
|
40 |
$loader->register(true);
|
41 |
|
|
|
42 |
require $vendorDir . '/codeinwp/themeisle-sdk/load.php';
|
43 |
|
44 |
return $loader;
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
+
class ComposerAutoloaderInite0ffea9447daabaa40bdd6ba02f97924 {
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInite0ffea9447daabaa40bdd6ba02f97924', 'loadClassLoader'), true /*, true */);
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInite0ffea9447daabaa40bdd6ba02f97924', 'loadClassLoader'));
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
39 |
|
40 |
$loader->register(true);
|
41 |
|
42 |
+
require $vendorDir . '/codeinwp/themeisle-sdk/load.php';
|
43 |
require $vendorDir . '/codeinwp/themeisle-sdk/load.php';
|
44 |
|
45 |
return $loader;
|
vendor/composer/installed.json
CHANGED
@@ -39,17 +39,22 @@
|
|
39 |
"source": {
|
40 |
"type": "git",
|
41 |
"url": "https://github.com/Codeinwp/themeisle-sdk.git",
|
42 |
-
"reference": "
|
43 |
},
|
44 |
"dist": {
|
45 |
"type": "zip",
|
46 |
-
"url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/
|
47 |
-
"reference": "
|
48 |
"shasum": ""
|
49 |
},
|
50 |
-
"time": "2017-
|
51 |
"type": "library",
|
52 |
"installation-source": "dist",
|
|
|
|
|
|
|
|
|
|
|
53 |
"license": [
|
54 |
"GPL-2.0+"
|
55 |
],
|
39 |
"source": {
|
40 |
"type": "git",
|
41 |
"url": "https://github.com/Codeinwp/themeisle-sdk.git",
|
42 |
+
"reference": "d7446e7d99fa8ca955268b15f5609f3322664996"
|
43 |
},
|
44 |
"dist": {
|
45 |
"type": "zip",
|
46 |
+
"url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/d7446e7d99fa8ca955268b15f5609f3322664996",
|
47 |
+
"reference": "d7446e7d99fa8ca955268b15f5609f3322664996",
|
48 |
"shasum": ""
|
49 |
},
|
50 |
+
"time": "2017-07-03 15:16:24",
|
51 |
"type": "library",
|
52 |
"installation-source": "dist",
|
53 |
+
"autoload": {
|
54 |
+
"files": [
|
55 |
+
"load.php"
|
56 |
+
]
|
57 |
+
},
|
58 |
"license": [
|
59 |
"GPL-2.0+"
|
60 |
],
|