WordPress Charts and Graphs Lite - Version 3.1.1

Version Description

  • 2018-12-05
Download this release

Release Info

Developer codeinwp
Plugin Icon WordPress Charts and Graphs Lite
Version 3.1.1
Comparing to
See all releases

Code changes from version 3.1.0 to 3.1.1

CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
 
 
 
 
 
 
 
2
  ### v3.1.0 - 2018-12-03
3
  **Changes:**
4
  * Add Table chart
1
 
2
+ ### v3.1.1 - 2018-12-05
3
+ **Changes:**
4
+ * Fix issue with Gutenberg support
5
+ * Fix issue with loading new Table chart
6
+ * Fix options that don't work correctly with some charts
7
+
8
  ### v3.1.0 - 2018-12-03
9
  **Changes:**
10
  * Add Table chart
classes/Visualizer/Gutenberg/Block.php CHANGED
@@ -66,20 +66,20 @@ class Visualizer_Gutenberg_Block {
66
  * Enqueue front end and editor JavaScript and CSS
67
  */
68
  public function enqueue_gutenberg_scripts() {
69
- $blockPath = VISUALIZER_ABSURL . '/classes/Visualizer/Gutenberg/build/block.js';
70
- $handsontableJS = VISUALIZER_ABSURL . '/classes/Visualizer/Gutenberg/build/handsontable.js';
71
- $stylePath = VISUALIZER_ABSURL . '/classes/Visualizer/Gutenberg/build/block.css';
72
- $handsontableCSS = VISUALIZER_ABSURL . '/classes/Visualizer/Gutenberg/build/handsontable.css';
73
 
74
  if ( VISUALIZER_TEST_JS_CUSTOMIZATION ) {
75
- $version = filemtime( VISUALIZER_ABSPATH . '/classes/Visualizer/Gutenberg/build/block.js' );
76
  } else {
77
  $version = $this->version;
78
  }
79
 
80
  // Enqueue the bundled block JS file
81
  wp_enqueue_script( 'handsontable', $handsontableJS );
82
- wp_enqueue_script( 'visualizer-gutenberg-block', $blockPath, array( 'wp-api', 'handsontable' ), $version );
83
 
84
  $type = 'community';
85
 
66
  * Enqueue front end and editor JavaScript and CSS
67
  */
68
  public function enqueue_gutenberg_scripts() {
69
+ $blockPath = VISUALIZER_ABSURL . 'classes/Visualizer/Gutenberg/build/block.js';
70
+ $handsontableJS = VISUALIZER_ABSURL . 'classes/Visualizer/Gutenberg/build/handsontable.js';
71
+ $stylePath = VISUALIZER_ABSURL . 'classes/Visualizer/Gutenberg/build/block.css';
72
+ $handsontableCSS = VISUALIZER_ABSURL . 'classes/Visualizer/Gutenberg/build/handsontable.css';
73
 
74
  if ( VISUALIZER_TEST_JS_CUSTOMIZATION ) {
75
+ $version = filemtime( VISUALIZER_ABSPATH . 'classes/Visualizer/Gutenberg/build/block.js' );
76
  } else {
77
  $version = $this->version;
78
  }
79
 
80
  // Enqueue the bundled block JS file
81
  wp_enqueue_script( 'handsontable', $handsontableJS );
82
+ wp_enqueue_script( 'visualizer-gutenberg-block', $blockPath, array( 'wp-api', 'handsontable' ), $version, true );
83
 
84
  $type = 'community';
85
 
classes/Visualizer/Module/Admin.php CHANGED
@@ -321,14 +321,14 @@ class Visualizer_Module_Admin extends Visualizer_Module {
321
  'name' => esc_html__( 'Column', 'visualizer' ),
322
  'enabled' => true,
323
  ),
324
- 'gauge' => array(
325
- 'name' => esc_html__( 'Gauge', 'visualizer' ),
326
- 'enabled' => true,
327
- ),
328
  'scatter' => array(
329
  'name' => esc_html__( 'Scatter', 'visualizer' ),
330
  'enabled' => true,
331
  ),
 
 
 
 
332
  'candlestick' => array(
333
  'name' => esc_html__( 'Candlestick', 'visualizer' ),
334
  'enabled' => true,
@@ -399,10 +399,18 @@ class Visualizer_Module_Admin extends Visualizer_Module {
399
  // if a user has a Gauge/Candlestick chart, then let them keep using it.
400
  if ( ! VISUALIZER_PRO ) {
401
  if ( ! self::hasChartType( 'gauge' ) ) {
402
- $deprecated[] = 'gauge';
 
 
 
 
403
  }
404
  if ( ! self::hasChartType( 'candlestick' ) ) {
405
- $deprecated[] = 'candlestick';
 
 
 
 
406
  }
407
  }
408
  break;
@@ -411,21 +419,27 @@ class Visualizer_Module_Admin extends Visualizer_Module {
411
  $deprecated[] = 'table';
412
 
413
  // rename the new table chart type.
414
- if ( self::hasChartType( 'table' ) ) {
415
- if ( $get2Darray ) {
416
- $types['dataTable'] = esc_html__( 'Table', 'visualizer' );
417
- } else {
418
- $types['dataTable']['name'] = esc_html__( 'Table', 'visualizer' );
419
- }
420
  }
421
 
422
  // if a user has a Gauge/Candlestick chart, then let them keep using it.
423
  if ( ! VISUALIZER_PRO ) {
424
  if ( ! self::hasChartType( 'gauge' ) ) {
425
- $deprecated[] = 'gauge';
 
 
 
 
426
  }
427
  if ( ! self::hasChartType( 'candlestick' ) ) {
428
- $deprecated[] = 'candlestick';
 
 
 
 
429
  }
430
  }
431
  }
321
  'name' => esc_html__( 'Column', 'visualizer' ),
322
  'enabled' => true,
323
  ),
 
 
 
 
324
  'scatter' => array(
325
  'name' => esc_html__( 'Scatter', 'visualizer' ),
326
  'enabled' => true,
327
  ),
328
+ 'gauge' => array(
329
+ 'name' => esc_html__( 'Gauge', 'visualizer' ),
330
+ 'enabled' => true,
331
+ ),
332
  'candlestick' => array(
333
  'name' => esc_html__( 'Candlestick', 'visualizer' ),
334
  'enabled' => true,
399
  // if a user has a Gauge/Candlestick chart, then let them keep using it.
400
  if ( ! VISUALIZER_PRO ) {
401
  if ( ! self::hasChartType( 'gauge' ) ) {
402
+ if ( $get2Darray ) {
403
+ $deprecated[] = 'gauge';
404
+ } else {
405
+ $types['gauge']['enabled'] = false;
406
+ }
407
  }
408
  if ( ! self::hasChartType( 'candlestick' ) ) {
409
+ if ( $get2Darray ) {
410
+ $deprecated[] = 'candlestick';
411
+ } else {
412
+ $types['candlestick']['enabled'] = false;
413
+ }
414
  }
415
  }
416
  break;
419
  $deprecated[] = 'table';
420
 
421
  // rename the new table chart type.
422
+ if ( $get2Darray ) {
423
+ $types['dataTable'] = esc_html__( 'Table', 'visualizer' );
424
+ } else {
425
+ $types['dataTable']['name'] = esc_html__( 'Table', 'visualizer' );
 
 
426
  }
427
 
428
  // if a user has a Gauge/Candlestick chart, then let them keep using it.
429
  if ( ! VISUALIZER_PRO ) {
430
  if ( ! self::hasChartType( 'gauge' ) ) {
431
+ if ( $get2Darray ) {
432
+ $deprecated[] = 'gauge';
433
+ } else {
434
+ $types['gauge']['enabled'] = false;
435
+ }
436
  }
437
  if ( ! self::hasChartType( 'candlestick' ) ) {
438
+ if ( $get2Darray ) {
439
+ $deprecated[] = 'candlestick';
440
+ } else {
441
+ $types['candlestick']['enabled'] = false;
442
+ }
443
  }
444
  }
445
  }
classes/Visualizer/Plugin.php CHANGED
@@ -28,7 +28,7 @@
28
  class Visualizer_Plugin {
29
 
30
  const NAME = 'visualizer';
31
- const VERSION = '3.1.0';
32
 
33
  // custom post types
34
  const CPT_VISUALIZER = 'visualizer';
28
  class Visualizer_Plugin {
29
 
30
  const NAME = 'visualizer';
31
+ const VERSION = '3.1.1';
32
 
33
  // custom post types
34
  const CPT_VISUALIZER = 'visualizer';
classes/Visualizer/Render/Sidebar/Graph.php CHANGED
@@ -141,8 +141,8 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
141
 
142
  self::_renderSelectItem(
143
  esc_html__( 'Text Position', 'visualizer' ),
144
- 'vAxis[textPosition]',
145
- isset( $this->vAxis['textPosition'] ) ? $this->vAxis['textPosition'] : '',
146
  $this->_positions,
147
  esc_html__( 'Position of the horizontal axis text, relative to the chart area.', 'visualizer' )
148
  );
@@ -184,16 +184,16 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
184
  self::_renderSectionStart( esc_html__( 'Grid Lines', 'visualizer' ), false );
185
  self::_renderTextItem(
186
  esc_html__( 'Count', 'visualizer' ),
187
- 'vAxis[gridlines][count]',
188
- isset( $this->vAxis['gridlines']['count'] ) ? $this->vAxis['gridlines']['count'] : '',
189
- esc_html__( 'The number of horizontal gridlines inside the chart area. Minimum value is 2. Specify -1 to automatically compute the number of gridlines.', 'visualizer' ),
190
  5
191
  );
192
 
193
  self::_renderColorPickerItem(
194
  esc_html__( 'Color', 'visualizer' ),
195
- 'vAxis[gridlines][color]',
196
- isset( $this->vAxis['gridlines']['color'] ) ? $this->vAxis['gridlines']['color'] : null,
197
  '#ccc'
198
  );
199
  self::_renderSectionEnd();
@@ -253,8 +253,8 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
253
 
254
  self::_renderSelectItem(
255
  esc_html__( 'Text Position', 'visualizer' ),
256
- 'hAxis[textPosition]',
257
- isset( $this->hAxis['textPosition'] ) ? $this->hAxis['textPosition'] : '',
258
  $this->_positions,
259
  esc_html__( 'Position of the vertical axis text, relative to the chart area.', 'visualizer' )
260
  );
@@ -296,16 +296,16 @@ abstract class Visualizer_Render_Sidebar_Graph extends Visualizer_Render_Sidebar
296
  self::_renderSectionStart( esc_html__( 'Grid Lines', 'visualizer' ), false );
297
  self::_renderTextItem(
298
  esc_html__( 'Count', 'visualizer' ),
299
- 'hAxis[gridlines][count]',
300
- isset( $this->hAxis['gridlines']['count'] ) ? $this->hAxis['gridlines']['count'] : '',
301
- esc_html__( 'The number of vertical gridlines inside the chart area. Minimum value is 2. Specify -1 to automatically compute the number of gridlines.', 'visualizer' ),
302
  5
303
  );
304
 
305
  self::_renderColorPickerItem(
306
  esc_html__( 'Color', 'visualizer' ),
307
- 'hAxis[gridlines][color]',
308
- isset( $this->hAxis['gridlines']['color'] ) ? $this->hAxis['gridlines']['color'] : null,
309
  '#ccc'
310
  );
311
  self::_renderSectionEnd();
141
 
142
  self::_renderSelectItem(
143
  esc_html__( 'Text Position', 'visualizer' ),
144
+ 'hAxis[textPosition]',
145
+ isset( $this->hAxis['textPosition'] ) ? $this->hAxis['textPosition'] : '',
146
  $this->_positions,
147
  esc_html__( 'Position of the horizontal axis text, relative to the chart area.', 'visualizer' )
148
  );
184
  self::_renderSectionStart( esc_html__( 'Grid Lines', 'visualizer' ), false );
185
  self::_renderTextItem(
186
  esc_html__( 'Count', 'visualizer' ),
187
+ 'hAxis[gridlines][count]',
188
+ isset( $this->hAxis['gridlines']['count'] ) ? $this->hAxis['gridlines']['count'] : '',
189
+ esc_html__( 'The number of vertical gridlines inside the chart area. Minimum value is 2. Specify -1 to automatically compute the number of gridlines.', 'visualizer' ),
190
  5
191
  );
192
 
193
  self::_renderColorPickerItem(
194
  esc_html__( 'Color', 'visualizer' ),
195
+ 'hAxis[gridlines][color]',
196
+ isset( $this->hAxis['gridlines']['color'] ) ? $this->hAxis['gridlines']['color'] : null,
197
  '#ccc'
198
  );
199
  self::_renderSectionEnd();
253
 
254
  self::_renderSelectItem(
255
  esc_html__( 'Text Position', 'visualizer' ),
256
+ 'vAxis[textPosition]',
257
+ isset( $this->vAxis['textPosition'] ) ? $this->vAxis['textPosition'] : '',
258
  $this->_positions,
259
  esc_html__( 'Position of the vertical axis text, relative to the chart area.', 'visualizer' )
260
  );
296
  self::_renderSectionStart( esc_html__( 'Grid Lines', 'visualizer' ), false );
297
  self::_renderTextItem(
298
  esc_html__( 'Count', 'visualizer' ),
299
+ 'vAxis[gridlines][count]',
300
+ isset( $this->vAxis['gridlines']['count'] ) ? $this->vAxis['gridlines']['count'] : '',
301
+ esc_html__( 'The number of horizontal gridlines inside the chart area. Minimum value is 2. Specify -1 to automatically compute the number of gridlines.', 'visualizer' ),
302
  5
303
  );
304
 
305
  self::_renderColorPickerItem(
306
  esc_html__( 'Color', 'visualizer' ),
307
+ 'vAxis[gridlines][color]',
308
+ isset( $this->vAxis['gridlines']['color'] ) ? $this->vAxis['gridlines']['color'] : null,
309
  '#ccc'
310
  );
311
  self::_renderSectionEnd();
classes/Visualizer/Render/Sidebar/Type/DataTable.php CHANGED
@@ -75,6 +75,10 @@ class Visualizer_Render_Sidebar_Type_DataTable extends Visualizer_Render_Sidebar
75
  * @access public
76
  */
77
  function load_assets( $deps, $is_frontend ) {
 
 
 
 
78
  wp_register_script( 'visualizer-datatables', self::$_js, array( 'jquery-ui-core', 'moment' ), Visualizer_Plugin::VERSION );
79
  wp_enqueue_style( 'visualizer-datatables', self::$_css, array(), Visualizer_Plugin::VERSION );
80
 
75
  * @access public
76
  */
77
  function load_assets( $deps, $is_frontend ) {
78
+ if ( ! wp_script_is( 'moment', 'registered' ) ) {
79
+ wp_register_script( 'moment', '//cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js', array(), Visualizer_Plugin::VERSION );
80
+ }
81
+
82
  wp_register_script( 'visualizer-datatables', self::$_js, array( 'jquery-ui-core', 'moment' ), Visualizer_Plugin::VERSION );
83
  wp_enqueue_style( 'visualizer-datatables', self::$_css, array(), Visualizer_Plugin::VERSION );
84
 
classes/Visualizer/Render/Sidebar/Type/Gauge.php CHANGED
@@ -80,7 +80,7 @@ class Visualizer_Render_Sidebar_Type_Gauge extends Visualizer_Render_Sidebar_Goo
80
  );
81
  self::_renderSectionEnd();
82
 
83
- self::_renderSectionStart( esc_html__( 'Gauge Settings', 'visualizer' ), false );
84
  }
85
 
86
  /**
80
  );
81
  self::_renderSectionEnd();
82
 
83
+ self::_renderGroupEnd();
84
  }
85
 
86
  /**
classes/Visualizer/Render/Sidebar/Type/Pie.php CHANGED
@@ -186,7 +186,7 @@ class Visualizer_Render_Sidebar_Type_Pie extends Visualizer_Render_Sidebar_Googl
186
  self::_renderTextItem(
187
  esc_html__( 'Slice Offset', 'visualizer' ),
188
  'slices[' . $i . '][offset]',
189
- isset( $this->slices[ $i ]['color'] ) ? $this->slices[ $i ]['color'] : null,
190
  esc_html__( "How far to separate the slice from the rest of the pie, from 0.0 (not at all) to 1.0 (the pie's radius).", 'visualizer' ),
191
  '0.0'
192
  );
186
  self::_renderTextItem(
187
  esc_html__( 'Slice Offset', 'visualizer' ),
188
  'slices[' . $i . '][offset]',
189
+ isset( $this->slices[ $i ]['offset'] ) ? $this->slices[ $i ]['offset'] : null,
190
  esc_html__( "How far to separate the slice from the rest of the pie, from 0.0 (not at all) to 1.0 (the pie's radius).", 'visualizer' ),
191
  '0.0'
192
  );
css/media.css CHANGED
@@ -1,5 +1,5 @@
1
  /*
2
- Version: 3.1.0
3
  */
4
  #visualizer-library-view {
5
  padding: 30px 10px 10px 30px;
1
  /*
2
+ Version: 3.1.1
3
  */
4
  #visualizer-library-view {
5
  padding: 30px 10px 10px 30px;
index.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Visualizer: Tables and Charts Manager for WordPress (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: 3.1.0
8
  Author: Themeisle
9
  Author URI: http://themeisle.com
10
  License: GPL v2.0 or later
4
  Plugin Name: Visualizer: Tables and Charts Manager for WordPress (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: 3.1.1
8
  Author: Themeisle
9
  Author URI: http://themeisle.com
10
  License: GPL v2.0 or later
readme.md CHANGED
@@ -145,6 +145,13 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
145
  5. Charts library
146
 
147
  ## Changelog ##
 
 
 
 
 
 
 
148
  ### 3.1.0 - 2018-12-03 ###
149
 
150
  * Add Table chart
145
  5. Charts library
146
 
147
  ## Changelog ##
148
+ ### 3.1.1 - 2018-12-05 ###
149
+
150
+ * Fix issue with Gutenberg support
151
+ * Fix issue with loading new Table chart
152
+ * Fix options that don't work correctly with some charts
153
+
154
+
155
  ### 3.1.0 - 2018-12-03 ###
156
 
157
  * Add Table chart
readme.txt CHANGED
@@ -145,6 +145,13 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have `
145
  5. Charts library
146
 
147
  == Changelog ==
 
 
 
 
 
 
 
148
  = 3.1.0 - 2018-12-03 =
149
 
150
  * Add Table chart
145
  5. Charts library
146
 
147
  == Changelog ==
148
+ = 3.1.1 - 2018-12-05 =
149
+
150
+ * Fix issue with Gutenberg support
151
+ * Fix issue with loading new Table chart
152
+ * Fix options that don't work correctly with some charts
153
+
154
+
155
  = 3.1.0 - 2018-12-03 =
156
 
157
  * Add Table chart
themeisle-hash.json CHANGED
@@ -1 +1 @@
1
- {"index.php":"d1936dc596b23651d67149e3fcf4fe67"}
1
+ {"index.php":"d0891983de124d6ce2d781aa89ec2813"}
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitdfd8cb7f1f0c2e4f449fa83462613075::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInitc21036b33b232f157458b22cbd73c961::getLoader();
vendor/autoload_52.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
6
 
7
- return ComposerAutoloaderInit4875f18f8264caada5e78efa1443a9b5::getLoader();
4
 
5
  require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
6
 
7
+ return ComposerAutoloaderIniteab2b177b8bbe7bb373fe9b5db53a414::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitdfd8cb7f1f0c2e4f449fa83462613075
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInitdfd8cb7f1f0c2e4f449fa83462613075
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInitdfd8cb7f1f0c2e4f449fa83462613075', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitdfd8cb7f1f0c2e4f449fa83462613075', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -42,14 +42,14 @@ class ComposerAutoloaderInitdfd8cb7f1f0c2e4f449fa83462613075
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
- composerRequiredfd8cb7f1f0c2e4f449fa83462613075($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
- function composerRequiredfd8cb7f1f0c2e4f449fa83462613075($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 ComposerAutoloaderInitc21036b33b232f157458b22cbd73c961
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInitc21036b33b232f157458b22cbd73c961', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInitc21036b33b232f157458b22cbd73c961', '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
+ composerRequirec21036b33b232f157458b22cbd73c961($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
+ function composerRequirec21036b33b232f157458b22cbd73c961($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 ComposerAutoloaderInit4875f18f8264caada5e78efa1443a9b5 {
6
  private static $loader;
7
 
8
  public static function loadClassLoader($class) {
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit4875f18f8264caada5e78efa1443a9b5 {
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit4875f18f8264caada5e78efa1443a9b5', 'loadClassLoader'), true /*, true */);
23
  self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit4875f18f8264caada5e78efa1443a9b5', 'loadClassLoader'));
25
 
26
  $vendorDir = dirname(dirname(__FILE__));
27
  $baseDir = dirname($vendorDir);
2
 
3
  // autoload_real_52.php generated by xrstf/composer-php52
4
 
5
+ class ComposerAutoloaderIniteab2b177b8bbe7bb373fe9b5db53a414 {
6
  private static $loader;
7
 
8
  public static function loadClassLoader($class) {
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderIniteab2b177b8bbe7bb373fe9b5db53a414', 'loadClassLoader'), true /*, true */);
23
  self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderIniteab2b177b8bbe7bb373fe9b5db53a414', 'loadClassLoader'));
25
 
26
  $vendorDir = dirname(dirname(__FILE__));
27
  $baseDir = dirname($vendorDir);