PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 1.1.4
Visualizer – Tables & Charts Manager with Built-in AI Generator v1.1.4
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 3.10.4 All 148 releases
← All changes | classes/Visualizer/Plugin.php +34 -58 3.0.61.1.4 View file →
@@ -1,5 +1,6 @@
1 1 <?php
2 +
2 3 // +----------------------------------------------------------------------+
3 4 // | Copyright 2013 Madpixels (email : visualizer@madpixels.net) |
4 5 // +----------------------------------------------------------------------+
5 6 // | This program is free software; you can redistribute it and/or modify |
@@ -17,8 +18,9 @@
17 18 // | MA 02110-1301 USA |
18 19 // +----------------------------------------------------------------------+
19 20 // | Author: Eugene Manuilov <eugene@manuilov.org> |
20 21 // +----------------------------------------------------------------------+
22 +
21 23 /**
22 24 * The core plugin class.
23 25 *
24 26 * @category Visualizer
@@ -26,50 +28,33 @@
26 28 * @since 1.0.0
27 29 */
28 30 class Visualizer_Plugin {
29 31
30 - const NAME = 'visualizer';
31 - const VERSION = '3.0.6';
32 + const NAME = 'visualizer';
33 + const VERSION = '1.1.4';
32 34
33 35 // custom post types
34 36 const CPT_VISUALIZER = 'visualizer';
35 37
36 38 // custom meta fields
37 - const CF_CHART_TYPE = 'visualizer-chart-type';
38 - const CF_SOURCE = 'visualizer-source';
39 - const CF_SERIES = 'visualizer-series';
39 + const CF_CHART_TYPE = 'visualizer-chart-type';
40 + const CF_SOURCE = 'visualizer-source';
41 + const CF_SERIES = 'visualizer-series';
40 42 const CF_DEFAULT_DATA = 'visualizer-default-data';
41 - const CF_SETTINGS = 'visualizer-settings';
43 + const CF_SETTINGS = 'visualizer-settings';
42 44
43 - const CF_SOURCE_FILTER = 'visualizer-source-filter';
44 -
45 45 // custom actions
46 - const ACTION_GET_CHARTS = 'visualizer-get-charts';
46 + const ACTION_GET_CHARTS = 'visualizer-get-charts';
47 47 const ACTION_CREATE_CHART = 'visualizer-create-chart';
48 - const ACTION_EDIT_CHART = 'visualizer-edit-chart';
49 - const ACTION_CLONE_CHART = 'visualizer-clone-chart';
48 + const ACTION_EDIT_CHART = 'visualizer-edit-chart';
49 + const ACTION_CLONE_CHART = 'visualizer-clone-chart';
50 50 const ACTION_DELETE_CHART = 'visualizer-delete-chart';
51 - const ACTION_UPLOAD_DATA = 'visualizer-upload-data';
52 - // Added by Ash/Upwork
53 - const ACTION_EXPORT_DATA = 'visualizer-export-data';
51 + const ACTION_UPLOAD_DATA = 'visualizer-upload-data';
54 52
55 - /**
56 - *Action used for fetching specific users/roles for permissions.
57 - */
58 - const ACTION_FETCH_PERMISSIONS_DATA = 'visualizer-fetch-permissions-data';
59 -
60 53 // custom filters
61 - const FILTER_CHART_WRAPPER_CLASS = 'visualizer-chart-wrapper-class';
62 54 const FILTER_GET_CHART_SERIES = 'visualizer-get-chart-series';
63 - const FILTER_GET_CHART_DATA = 'visualizer-get-chart-data';
64 - const FILTER_GET_CHART_SETTINGS = 'visualizer-get-chart-settings';
55 + const FILTER_GET_CHART_DATA = 'visualizer-get-chart-data';
65 56
66 - const CF_CHART_URL = 'visualizer-chart-url';
67 - const CF_CHART_SCHEDULE = 'visualizer-chart-schedule';
68 - // Added by Ash/Upwork
69 - const PRO_TEASER_URL = 'http://themeisle.com/plugins/visualizer-charts-and-graphs-pro-addon/';
70 - const PRO_TEASER_TITLE = 'Check PRO version ';
71 - // Added by Ash/Upwork
72 57 /**
73 58 * Singletone instance of the plugin.
74 59 *
75 60 * @since 1.0.0
@@ -95,12 +80,20 @@
95 80 * @since 1.0.0
96 81 *
97 82 * @access private
98 83 */
99 - private function __construct() {
100 - }
84 + private function __construct() {}
101 85
102 86 /**
87 + * Private clone method.
88 + *
89 + * @since 1.0.0
90 + *
91 + * @access private
92 + */
93 + private function __clone() {}
94 +
95 + /**
103 96 * Returns singletone instance of the plugin.
104 97 *
105 98 * @since 1.0.0
106 99 *
@@ -116,35 +109,18 @@
116 109 return self::$_instance;
117 110 }
118 111
119 112 /**
120 - * Returns chart types.
121 - *
122 - * @since 1.0.0
123 - *
124 - * @static
125 - * @access public
126 - * @return array
127 - */
128 - public static function getChartTypes() {
129 - $array = array_keys( Visualizer_Module_Admin::_getChartTypesLocalized() );
130 -
131 - return $array;
132 - }
133 -
134 - /**
135 113 * Returns a module if it was registered before. Otherwise NULL.
136 114 *
137 115 * @since 1.0.0
138 116 *
139 117 * @access public
140 - *
141 118 * @param string $name The name of the module to return.
142 - *
143 119 * @return Visualizer_Module|null Returns a module if it was registered or NULL.
144 120 */
145 121 public function getModule( $name ) {
146 - return isset( $this->_modules[ $name ] ) ? $this->_modules[ $name ] : null;
122 + return isset( $this->_modules[$name] ) ? $this->_modules[$name] : null;
147 123 }
148 124
149 125 /**
150 126 * Determines whether the module has been registered or not.
@@ -151,15 +127,13 @@
151 127 *
152 128 * @since 1.0.0
153 129 *
154 130 * @access public
155 - *
156 131 * @param string $name The name of a module to check.
157 - *
158 132 * @return boolean TRUE if the module has been registered. Otherwise FALSE.
159 133 */
160 134 public function hasModule( $name ) {
161 - return isset( $this->_modules[ $name ] );
135 + return isset( $this->_modules[$name] );
162 136 }
163 137
164 138 /**
165 139 * Register new module in the plugin.
@@ -166,22 +140,24 @@
166 140 *
167 141 * @since 1.0.0
168 142 *
169 143 * @access public
170 - *
171 - * @param string $class The name of the module to use in the plugin.
144 + * @param string $module The name of the module to use in the plugin.
172 145 */
173 146 public function setModule( $class ) {
174 - $this->_modules[ $class ] = new $class( $this );
147 + $this->_modules[$class] = new $class( $this );
175 148 }
176 149
177 150 /**
178 - * Private clone method.
151 + * Returns chart types.
179 152 *
180 153 * @since 1.0.0
181 154 *
182 - * @access private
155 + * @static
156 + * @access public
157 + * @return array
183 158 */
184 - private function __clone() {
159 + public static function getChartTypes() {
160 + return array( 'line', 'area', 'bar', 'column', 'pie', 'geo', 'scatter', 'candlestick', 'gauge' );
185 161 }
186 162
187 -}
163 +}