PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 1.7.6
Visualizer – Tables & Charts Manager with Built-in AI Generator v1.7.6
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
visualizer / classes / Visualizer / Plugin.php

Plugin.php in Visualizer – Tables & Charts Manager with Built-in AI Generator 1.7.6, at classes/Visualizer/Plugin.php

172 lines 4.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // +----------------------------------------------------------------------+
4 // | Copyright 2013 Madpixels (email : visualizer@madpixels.net) |
5 // +----------------------------------------------------------------------+
6 // | This program is free software; you can redistribute it and/or modify |
7 // | it under the terms of the GNU General Public License, version 2, as |
8 // | published by the Free Software Foundation. |
9 // | |
10 // | This program is distributed in the hope that it will be useful, |
11 // | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 // | GNU General Public License for more details. |
14 // | |
15 // | You should have received a copy of the GNU General Public License |
16 // | along with this program; if not, write to the Free Software |
17 // | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, |
18 // | MA 02110-1301 USA |
19 // +----------------------------------------------------------------------+
20 // | Author: Eugene Manuilov <eugene@manuilov.org> |
21 // +----------------------------------------------------------------------+
22 /**
23 * The core plugin class.
24 *
25 * @category Visualizer
26 *
27 * @since 1.0.0
28 */
29 class Visualizer_Plugin {
30
31 const NAME = 'visualizer';
32 const VERSION = '1.7.6';
33
34 // custom post types
35 const CPT_VISUALIZER = 'visualizer';
36
37 // custom meta fields
38 const CF_CHART_TYPE = 'visualizer-chart-type';
39 const CF_SOURCE = 'visualizer-source';
40 const CF_SERIES = 'visualizer-series';
41 const CF_DEFAULT_DATA = 'visualizer-default-data';
42 const CF_SETTINGS = 'visualizer-settings';
43
44 // custom actions
45 const ACTION_GET_CHARTS = 'visualizer-get-charts';
46 const ACTION_CREATE_CHART = 'visualizer-create-chart';
47 const ACTION_EDIT_CHART = 'visualizer-edit-chart';
48 const ACTION_CLONE_CHART = 'visualizer-clone-chart';
49 const ACTION_DELETE_CHART = 'visualizer-delete-chart';
50 const ACTION_UPLOAD_DATA = 'visualizer-upload-data';
51 // Added by Ash/Upwork
52 const ACTION_EXPORT_DATA = 'visualizer-export-data';
53
54 // custom filters
55 const FILTER_CHART_WRAPPER_CLASS = 'visualizer-chart-wrapper-class';
56 const FILTER_GET_CHART_SERIES = 'visualizer-get-chart-series';
57 const FILTER_GET_CHART_DATA = 'visualizer-get-chart-data';
58 const FILTER_GET_CHART_SETTINGS = 'visualizer-get-chart-settings';
59
60 // Added by Ash/Upwork
61 const PRO_TEASER_URL = 'http://themeisle.com/plugins/visualizer-charts-and-graphs-pro-addon/';
62 const PRO_TEASER_TITLE = 'Check PRO version ';
63 // Added by Ash/Upwork
64 /**
65 * Singletone instance of the plugin.
66 *
67 * @since 1.0.0
68 *
69 * @access private
70 * @var Visualizer_Plugin
71 */
72 private static $_instance = null;
73
74 /**
75 * The array of registered modules.
76 *
77 * @since 1.0.0
78 *
79 * @access private
80 * @var array
81 */
82 private $_modules = array();
83
84 /**
85 * Private constructor.
86 *
87 * @since 1.0.0
88 *
89 * @access private
90 */
91 private function __construct() {}
92
93 /**
94 * Private clone method.
95 *
96 * @since 1.0.0
97 *
98 * @access private
99 */
100 private function __clone() {}
101
102 /**
103 * Returns singletone instance of the plugin.
104 *
105 * @since 1.0.0
106 *
107 * @static
108 * @access public
109 * @return Visualizer_Plugin
110 */
111 public static function instance() {
112 if ( is_null( self::$_instance ) ) {
113 self::$_instance = new Visualizer_Plugin();
114 }
115
116 return self::$_instance;
117 }
118
119 /**
120 * Returns a module if it was registered before. Otherwise NULL.
121 *
122 * @since 1.0.0
123 *
124 * @access public
125 * @param string $name The name of the module to return.
126 * @return Visualizer_Module|null Returns a module if it was registered or NULL.
127 */
128 public function getModule( $name ) {
129 return isset( $this->_modules[ $name ] ) ? $this->_modules[ $name ] : null;
130 }
131
132 /**
133 * Determines whether the module has been registered or not.
134 *
135 * @since 1.0.0
136 *
137 * @access public
138 * @param string $name The name of a module to check.
139 * @return boolean TRUE if the module has been registered. Otherwise FALSE.
140 */
141 public function hasModule( $name ) {
142 return isset( $this->_modules[ $name ] );
143 }
144
145 /**
146 * Register new module in the plugin.
147 *
148 * @since 1.0.0
149 *
150 * @access public
151 * @param string $class The name of the module to use in the plugin.
152 */
153 public function setModule( $class ) {
154 $this->_modules[ $class ] = new $class( $this );
155 }
156
157 /**
158 * Returns chart types.
159 *
160 * @since 1.0.0
161 *
162 * @static
163 * @access public
164 * @return array
165 */
166 public static function getChartTypes() {
167 $array = array_keys( Visualizer_Module_Admin::_getChartTypesLocalized() );
168 return $array;
169 }
170
171 }
172