PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.2
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.2
4.0.8 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 All 149 releases
← All changes | classes/Visualizer/Module/Admin.php +577 -98 3.0.53.4.2 View file →
@@ -52,19 +52,229 @@
52 52 public function __construct( Visualizer_Plugin $plugin ) {
53 53 parent::__construct( $plugin );
54 54 $this->_addAction( 'load-post.php', 'enqueueMediaScripts' );
55 55 $this->_addAction( 'load-post-new.php', 'enqueueMediaScripts' );
56 - $this->_addAction( 'admin_footer', 'renderTempaltes' );
56 + $this->_addAction( 'admin_footer', 'renderTemplates' );
57 57 $this->_addAction( 'admin_enqueue_scripts', 'enqueueLibraryScripts', null, 8 );
58 58 $this->_addAction( 'admin_menu', 'registerAdminMenu' );
59 59 $this->_addFilter( 'media_view_strings', 'setupMediaViewStrings' );
60 60 $this->_addFilter( 'plugin_action_links', 'getPluginActionLinks', 10, 2 );
61 + $this->_addFilter( 'plugin_row_meta', 'getPluginMetaLinks', 10, 2 );
61 62 $this->_addFilter( 'visualizer_logger_data', 'getLoggerData' );
62 63 $this->_addFilter( 'visualizer_get_chart_counts', 'getChartCountsByTypeAndMeta' );
63 64 $this->_addFilter( 'visualizer_feedback_review_trigger', 'feedbackReviewTrigger' );
65 +
66 + // revision support.
67 + $this->_addFilter( 'wp_revisions_to_keep', 'limitRevisions', null, 10, 2 );
68 + $this->_addAction( '_wp_put_post_revision', 'addRevision', null, 10, 1 );
69 + $this->_addAction( 'wp_restore_post_revision', 'restoreRevision', null, 10, 2 );
70 +
71 + $this->_addAction( 'visualizer_chart_schedules_spl', 'addSplChartSchedules', null, 10, 3 );
72 +
73 + $this->_addAction( 'admin_init', 'init' );
74 +
75 + if ( defined( 'TI_CYPRESS_TESTING' ) ) {
76 + $this->load_cypress_hooks();
77 + }
78 +
64 79 }
65 80
66 81 /**
82 + * Define the hooks that are needed for cypress.
83 + *
84 + * @since 3.4.0
85 + * @access private
86 + */
87 + private function load_cypress_hooks() {
88 + // all charts should load on the same page without pagination.
89 + add_filter(
90 + 'visualizer_query_args', function( $args ) {
91 + $args['posts_per_page'] = 20;
92 + return $args;
93 + }, 10, 1
94 + );
95 + }
96 +
97 + /**
98 + * Add disabled `optgroup` schedules to the drop downs.
99 + *
100 + * @since ?
101 + *
102 + * @access public
103 + *
104 + * @param string $feature The feature for which to add schedules.
105 + * @param int $chart_id The chart ID.
106 + * @param int $plan The plan number.
107 + */
108 + public function addSplChartSchedules( $feature, $chart_id, $plan ) {
109 + if ( apply_filters( 'visualizer_is_business', false ) ) {
110 + return;
111 + }
112 +
113 + $license = __( 'PRO', 'visualizer' );
114 + if ( Visualizer_Module::is_pro() ) {
115 + switch ( $plan ) {
116 + case 1:
117 + $license = __( 'Developer', 'visualizer' );
118 + break;
119 + }
120 + }
121 +
122 + $hours = array(
123 + '0' => __( 'Live', 'visualizer' ),
124 + '1' => __( 'Each hour', 'visualizer' ),
125 + '12' => __( 'Each 12 hours', 'visualizer' ),
126 + '24' => __( 'Each day', 'visualizer' ),
127 + '72' => __( 'Each 3 days', 'visualizer' ),
128 + );
129 +
130 + switch ( $feature ) {
131 + case 'json':
132 + case 'csv':
133 + // no more schedules if pro is already active.
134 + if ( Visualizer_Module::is_pro() ) {
135 + return;
136 + }
137 + break;
138 + case 'wp':
139 + // fall-through.
140 + case 'db':
141 + break;
142 + default:
143 + return;
144 + }
145 +
146 + echo '<optgroup disabled label="' . sprintf( __( 'More in the %s version', 'visualizer' ), $license ) . '">';
147 + foreach ( $hours as $hour => $desc ) {
148 + echo '<option disabled>' . $desc . '</option>';
149 + }
150 + echo '</optgroup>';
151 + }
152 +
153 + /**
154 + * No limits on revisions.
155 + */
156 + public function limitRevisions( $num, $post ) {
157 + if ( Visualizer_Plugin::CPT_VISUALIZER === $post->post_type ) {
158 + return -1;
159 + }
160 + return $num;
161 + }
162 +
163 + /**
164 + * Add a revision.
165 + */
166 + public function addRevision( $revision_id ) {
167 + $parent_id = wp_is_post_revision( $revision_id );
168 + if ( Visualizer_Plugin::CPT_VISUALIZER === get_post_type( $parent_id ) ) {
169 + // add the meta data to this revision.
170 + $meta = get_post_meta( $parent_id, '', true );
171 +
172 + if ( $meta ) {
173 + foreach ( $meta as $key => $value ) {
174 + if ( 0 === strpos( $key, 'visualizer' ) ) {
175 + add_metadata( 'post', $revision_id, $key, maybe_unserialize( $value[0] ) );
176 + }
177 + }
178 + }
179 + }
180 + }
181 +
182 + /**
183 + * Restore a revision.
184 + */
185 + public function restoreRevision( $post_id, $revision_id ) {
186 + if ( Visualizer_Plugin::CPT_VISUALIZER === get_post_type( $post_id ) ) {
187 + // get the meta information from the revision.
188 + $meta = get_metadata( 'post', $revision_id, '', true );
189 +
190 + // delete all meta information from the post before adding.
191 + $post_meta = get_post_meta( $post_id, '', true );
192 + if ( $post_meta ) {
193 + foreach ( $meta as $key => $value ) {
194 + if ( 0 === strpos( $key, 'visualizer' ) ) {
195 + delete_post_meta( $post_id, $key );
196 + }
197 + }
198 + }
199 +
200 + if ( $meta ) {
201 + foreach ( $meta as $key => $value ) {
202 + if ( 0 === strpos( $key, 'visualizer' ) ) {
203 + add_post_meta( $post_id, $key, maybe_unserialize( $value[0] ) );
204 + }
205 + }
206 + }
207 + }
208 + }
209 +
210 + /**
211 + * Admin init.
212 + *
213 + * @access public
214 + */
215 + public function init() {
216 + // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
217 + if ( current_user_can( 'edit_posts' ) && current_user_can( 'edit_pages' ) && 'true' == get_user_option( 'rich_editing' ) ) {
218 + $this->_addFilter( 'mce_external_languages', 'add_tinymce_lang', 10, 1 );
219 + $this->_addFilter( 'mce_external_plugins', 'tinymce_plugin', 10, 1 );
220 + $this->_addFilter( 'mce_buttons', 'register_mce_button', 10, 1 );
221 + $this->_addFilter( 'tiny_mce_before_init', 'get_strings_for_block', 10, 1 );
222 + }
223 + }
224 +
225 + /**
226 + * Add the strings required for the TinyMCE buttons for the classic block (not the classic editor).
227 + *
228 + * @since ?
229 + * @access friendly
230 + */
231 + function get_strings_for_block( $settings ) {
232 + $class = new Visualizer_Module_Language();
233 + $strings = $class->get_strings();
234 + $array = array( 'visualizer_tinymce_plugin' => json_encode( $strings ) );
235 + return array_merge( $settings, $array );
236 + }
237 +
238 + /**
239 + * Load plugin translation for - TinyMCE API
240 + *
241 + * @access public
242 + * @param array $arr The tinymce_lang array.
243 + * @return array
244 + */
245 + public function add_tinymce_lang( $arr ) {
246 + $ui_lang = VISUALIZER_ABSPATH . '/classes/Visualizer/Module/Language.php';
247 + $ui_lang = apply_filters( 'visualizer_ui_lang_filter', $ui_lang );
248 + $arr[] = $ui_lang;
249 + return $arr;
250 + }
251 +
252 + /**
253 + * Load custom js options - TinyMCE API
254 + *
255 + * @access public
256 + * @param array $plugin_array The tinymce plugin array.
257 + * @return array
258 + */
259 + public function tinymce_plugin( $plugin_array ) {
260 + $plugin_array['visualizer_mce_button'] = VISUALIZER_ABSURL . 'js/mce.js';
261 + return $plugin_array;
262 + }
263 +
264 + /**
265 + * Register new button in the editor
266 + *
267 + * @access public
268 + * @param array $buttons The tinymce buttons array.
269 + * @return array
270 + */
271 + public function register_mce_button( $buttons ) {
272 + array_push( $buttons, 'visualizer_mce_button' );
273 + return $buttons;
274 + }
275 +
276 + /**
67 277 * Whether to show the feedback review or not.
68 278 *
69 279 * @access public
70 280 */
@@ -97,14 +307,28 @@
97 307 public function enqueueMediaScripts() {
98 308 global $typenow;
99 309 if ( post_type_supports( $typenow, 'editor' ) ) {
100 310 wp_enqueue_style( 'visualizer-media', VISUALIZER_ABSURL . 'css/media.css', array( 'media-views' ), Visualizer_Plugin::VERSION );
101 - wp_enqueue_script( 'visualizer-google-jsapi-new', '//www.gstatic.com/charts/loader.js', array( 'media-editor' ), null, true );
102 - wp_enqueue_script( 'visualizer-google-jsapi-old', '//www.google.com/jsapi', array( 'visualizer-google-jsapi-new' ), null, true );
103 - wp_enqueue_script( 'visualizer-media-model', VISUALIZER_ABSURL . 'js/media/model.js', array( 'visualizer-google-jsapi-old' ), Visualizer_Plugin::VERSION, true );
311 +
312 + // Load all the assets for the different libraries we support.
313 + $deps = array(
314 + Visualizer_Render_Sidebar_Google::enqueue_assets( array( 'media-editor' ) ),
315 + Visualizer_Render_Sidebar_Type_DataTable_DataTable::enqueue_assets( array( 'media-editor' ) ),
316 + );
317 +
318 + wp_enqueue_script( 'visualizer-media-model', VISUALIZER_ABSURL . 'js/media/model.js', $deps, Visualizer_Plugin::VERSION, true );
104 319 wp_enqueue_script( 'visualizer-media-collection', VISUALIZER_ABSURL . 'js/media/collection.js', array( 'visualizer-media-model' ), Visualizer_Plugin::VERSION, true );
105 320 wp_enqueue_script( 'visualizer-media-controller', VISUALIZER_ABSURL . 'js/media/controller.js', array( 'visualizer-media-collection' ), Visualizer_Plugin::VERSION, true );
106 321 wp_enqueue_script( 'visualizer-media-view', VISUALIZER_ABSURL . 'js/media/view.js', array( 'visualizer-media-controller' ), Visualizer_Plugin::VERSION, true );
322 + wp_localize_script(
323 + 'visualizer-media-view',
324 + 'visualizer',
325 + array(
326 + 'i10n' => array(
327 + 'insert' => __( 'Insert', 'visualizer' ),
328 + ),
329 + )
330 + );
107 331 wp_enqueue_script( 'visualizer-media-toolbar', VISUALIZER_ABSURL . 'js/media/toolbar.js', array( 'visualizer-media-view' ), Visualizer_Plugin::VERSION, true );
108 332 wp_enqueue_script( 'visualizer-media', VISUALIZER_ABSURL . 'js/media.js', array( 'visualizer-media-toolbar' ), Visualizer_Plugin::VERSION, true );
109 333 }
110 334 }
@@ -120,8 +344,9 @@
120 344 *
121 345 * @return array The extended array of media view strings.
122 346 */
123 347 public function setupMediaViewStrings( $strings ) {
348 + $chart_types = self::_getChartTypesLocalized( true, true, true );
124 349 $strings['visualizer'] = array(
125 350 'actions' => array(
126 351 'get_charts' => Visualizer_Plugin::ACTION_GET_CHARTS,
127 352 'delete_chart' => Visualizer_Plugin::ACTION_DELETE_CHART,
@@ -133,10 +358,10 @@
133 358 'library' => esc_html__( 'From Library', 'visualizer' ),
134 359 'create' => esc_html__( 'Create New', 'visualizer' ),
135 360 ),
136 361 'library' => array(
137 - 'filters' => self::_getChartTypesLocalized( true, true ),
138 - 'types' => array_keys( self::_getChartTypesLocalized( true, true ) ),
362 + 'filters' => $chart_types,
363 + 'types' => array_keys( $chart_types ),
139 364 ),
140 365 'nonce' => wp_create_nonce(),
141 366 'buildurl' => add_query_arg( 'action', Visualizer_Plugin::ACTION_CREATE_CHART, admin_url( 'admin-ajax.php' ) ),
142 367 );
@@ -152,59 +377,104 @@
152 377 * @static
153 378 * @access private
154 379 * @return array The associated array of chart types with localized names.
155 380 */
156 - public static function _getChartTypesLocalized( $enabledOnly = false, $get2Darray = false ) {
157 - $types = array(
158 - 'pie' => array(
159 - 'name' => esc_html__( 'Pie', 'visualizer' ),
381 + public static function _getChartTypesLocalized( $enabledOnly = false, $get2Darray = false, $add_select = false, $where = null ) {
382 + $additional = array();
383 + if ( $add_select ) {
384 + $additional['select'] = array(
385 + 'name' => esc_html__( 'All', 'visualizer' ),
160 386 'enabled' => true,
161 - ),
162 - 'line' => array(
163 - 'name' => esc_html__( 'Line', 'visualizer' ),
164 - 'enabled' => true,
165 - ),
166 - 'area' => array(
167 - 'name' => esc_html__( 'Area', 'visualizer' ),
168 - 'enabled' => true,
169 - ),
170 - 'geo' => array(
171 - 'name' => esc_html__( 'Geo', 'visualizer' ),
172 - 'enabled' => true,
173 - ),
174 - 'bar' => array(
175 - 'name' => esc_html__( 'Bar', 'visualizer' ),
176 - 'enabled' => true,
177 - ),
178 - 'column' => array(
179 - 'name' => esc_html__( 'Column', 'visualizer' ),
180 - 'enabled' => true,
181 - ),
182 - 'gauge' => array(
183 - 'name' => esc_html__( 'Gauge', 'visualizer' ),
184 - 'enabled' => true,
185 - ),
186 - 'scatter' => array(
187 - 'name' => esc_html__( 'Scatter', 'visualizer' ),
188 - 'enabled' => true,
189 - ),
190 - 'candlestick' => array(
191 - 'name' => esc_html__( 'Candlestick', 'visualizer' ),
192 - 'enabled' => true,
193 - ),
194 - // pro types
195 - 'table' => array(
196 - 'name' => esc_html__( 'Table', 'visualizer' ),
197 - 'enabled' => false,
198 - ),
199 - 'timeline' => array(
200 - 'name' => esc_html__( 'Timeline', 'visualizer' ),
201 - 'enabled' => false,
202 - ),
203 - 'combo' => array(
204 - 'name' => esc_html__( 'Combo', 'visualizer' ),
205 - 'enabled' => false,
206 - ),
387 + );
388 + }
389 +
390 + $types = array_merge(
391 + $additional,
392 + array(
393 + 'dataTable' => array(
394 + 'name' => esc_html__( 'Table', 'visualizer' ),
395 + 'enabled' => true,
396 + 'supports' => array( 'DataTable' ),
397 + ),
398 + 'pie' => array(
399 + 'name' => esc_html__( 'Pie/Donut', 'visualizer' ),
400 + 'enabled' => true,
401 + 'supports' => array( 'Google Charts', 'ChartJS' ),
402 + ),
403 + 'line' => array(
404 + 'name' => esc_html__( 'Line', 'visualizer' ),
405 + 'enabled' => true,
406 + 'supports' => array( 'Google Charts', 'ChartJS' ),
407 + ),
408 + 'area' => array(
409 + 'name' => esc_html__( 'Area', 'visualizer' ),
410 + 'enabled' => true,
411 + // in ChartJS, the fill option is used to make Line chart an area: https://www.chartjs.org/docs/latest/charts/area.html
412 + 'supports' => array( 'Google Charts' ),
413 + ),
414 + 'geo' => array(
415 + 'name' => esc_html__( 'Geo', 'visualizer' ),
416 + 'enabled' => true,
417 + 'supports' => array( 'Google Charts' ),
418 + ),
419 + 'bar' => array(
420 + 'name' => esc_html__( 'Bar', 'visualizer' ),
421 + 'enabled' => true,
422 + 'supports' => array( 'Google Charts', 'ChartJS' ),
423 + ),
424 + 'column' => array(
425 + 'name' => esc_html__( 'Column', 'visualizer' ),
426 + 'enabled' => true,
427 + 'supports' => array( 'Google Charts', 'ChartJS' ),
428 + ),
429 + 'bubble' => array(
430 + 'name' => esc_html__( 'Bubble', 'visualizer' ),
431 + 'enabled' => true,
432 + // chartjs' bubble is ugly looking (and it won't work off the default bubble.csv) so it is being excluded for the time being.
433 + 'supports' => array( 'Google Charts' ),
434 + ),
435 + 'scatter' => array(
436 + 'name' => esc_html__( 'Scatter', 'visualizer' ),
437 + 'enabled' => true,
438 + 'supports' => array( 'Google Charts' ),
439 + ),
440 + 'gauge' => array(
441 + 'name' => esc_html__( 'Gauge', 'visualizer' ),
442 + 'enabled' => true,
443 + 'supports' => array( 'Google Charts' ),
444 + ),
445 + 'candlestick' => array(
446 + 'name' => esc_html__( 'Candlestick', 'visualizer' ),
447 + 'enabled' => true,
448 + 'supports' => array( 'Google Charts' ),
449 + ),
450 + // pro types
451 + 'table' => array(
452 + 'name' => esc_html__( 'Table (Deprecated)', 'visualizer' ),
453 + 'enabled' => false,
454 + 'supports' => array( 'Google Charts' ),
455 + ),
456 + 'timeline' => array(
457 + 'name' => esc_html__( 'Timeline', 'visualizer' ),
458 + 'enabled' => false,
459 + 'supports' => array( 'Google Charts', 'ChartJS' ),
460 + ),
461 + 'combo' => array(
462 + 'name' => esc_html__( 'Combo', 'visualizer' ),
463 + 'enabled' => false,
464 + 'supports' => array( 'Google Charts' ),
465 + ),
466 + 'polarArea' => array(
467 + 'name' => esc_html__( 'Polar Area', 'visualizer' ),
468 + 'enabled' => false,
469 + 'supports' => array( 'ChartJS' ),
470 + ),
471 + 'radar' => array(
472 + 'name' => esc_html__( 'Radar/Spider', 'visualizer' ),
473 + 'enabled' => false,
474 + 'supports' => array( 'ChartJS' ),
475 + ),
476 + )
207 477 );
208 478 $types = apply_filters( 'visualizer_pro_chart_types', $types );
209 479 if ( $enabledOnly ) {
210 480 $filtered = array();
@@ -212,8 +482,12 @@
212 482 if ( ! is_array( $array ) ) {
213 483 // support for old pro
214 484 $array = array( 'enabled' => true, 'name' => $array );
215 485 }
486 + // backward compatibility for PRO before v1.9.0
487 + if ( ! array_key_exists( 'supports', $array ) ) {
488 + $array['supports'] = array( 'Google Charts' );
489 + }
216 490 if ( ! $array['enabled'] ) {
217 491 continue;
218 492 }
219 493 $filtered[ $type ] = $array;
@@ -226,13 +500,94 @@
226 500 if ( ! is_array( $array ) ) {
227 501 // support for old pro
228 502 $array = array( 'enabled' => true, 'name' => $array );
229 503 }
504 + // backward compatibility for PRO before v1.9.0
505 + if ( ! array_key_exists( 'supports', $array ) ) {
506 + $array['supports'] = array( 'Google Charts' );
507 + }
230 508 $doubleD[ $type ] = $array['name'];
231 509 }
232 510 $types = $doubleD;
233 511 }
234 512
513 + return self::handleDeprecatedCharts( $types, $enabledOnly, $get2Darray, $where );
514 + }
515 +
516 + /**
517 + * Handle (soon-to-be) deprecated charts.
518 + */
519 + private static function handleDeprecatedCharts( $types, $enabledOnly, $get2Darray, $where ) {
520 + $deprecated = array();
521 +
522 + switch ( $where ) {
523 + case 'types':
524 + // fall-through
525 + case 'library':
526 + // if the user has a Google Table chart, show it as deprecated otherwise remove the option from the library.
527 + if ( ! self::hasChartType( 'table' ) ) {
528 + $deprecated[] = 'table';
529 + if ( $get2Darray ) {
530 + $types['dataTable'] = esc_html__( 'Table', 'visualizer' );
531 + } else {
532 + $types['dataTable']['name'] = esc_html__( 'Table', 'visualizer' );
533 + }
534 + }
535 +
536 + // if a user has a Gauge/Candlestick chart, then let them keep using it.
537 + if ( ! Visualizer_Module::is_pro() ) {
538 + if ( ! self::hasChartType( 'gauge' ) ) {
539 + if ( $get2Darray ) {
540 + $deprecated[] = 'gauge';
541 + } else {
542 + $types['gauge']['enabled'] = false;
543 + }
544 + }
545 + if ( ! self::hasChartType( 'candlestick' ) ) {
546 + if ( $get2Darray ) {
547 + $deprecated[] = 'candlestick';
548 + } else {
549 + $types['candlestick']['enabled'] = false;
550 + }
551 + }
552 + }
553 + break;
554 + default:
555 + // remove the option to create a Google Table chart.
556 + $deprecated[] = 'table';
557 +
558 + // rename the new table chart type.
559 + if ( $get2Darray ) {
560 + $types['dataTable'] = esc_html__( 'Table', 'visualizer' );
561 + } else {
562 + $types['dataTable']['name'] = esc_html__( 'Table', 'visualizer' );
563 + }
564 +
565 + // if a user has a Gauge/Candlestick chart, then let them keep using it.
566 + if ( ! Visualizer_Module::is_pro() ) {
567 + if ( ! self::hasChartType( 'gauge' ) ) {
568 + if ( $get2Darray ) {
569 + $deprecated[] = 'gauge';
570 + } else {
571 + $types['gauge']['enabled'] = false;
572 + }
573 + }
574 + if ( ! self::hasChartType( 'candlestick' ) ) {
575 + if ( $get2Darray ) {
576 + $deprecated[] = 'candlestick';
577 + } else {
578 + $types['candlestick']['enabled'] = false;
579 + }
580 + }
581 + }
582 + }
583 +
584 + if ( $deprecated ) {
585 + foreach ( $deprecated as $type ) {
586 + unset( $types[ $type ] );
587 + }
588 + }
589 +
235 590 return $types;
236 591 }
237 592
238 593 /**
@@ -242,11 +597,11 @@
242 597 * @global string $pagenow The name of the current page.
243 598 *
244 599 * @access public
245 600 */
246 - public function renderTempaltes() {
601 + public function renderTemplates() {
247 602 global $pagenow;
248 - if ( 'post.php' != $pagenow && 'post-new.php' != $pagenow ) {
603 + if ( 'post.php' !== $pagenow && 'post-new.php' !== $pagenow ) {
249 604 return;
250 605 }
251 606 $render = new Visualizer_Render_Templates();
252 607 $render->render();
@@ -264,26 +619,40 @@
264 619 *
265 620 * @param string $suffix The current page suffix.
266 621 */
267 622 public function enqueueLibraryScripts( $suffix ) {
268 - if ( $suffix == $this->_libraryPage ) {
623 + if ( $suffix === $this->_libraryPage ) {
269 624 wp_enqueue_style( 'visualizer-library', VISUALIZER_ABSURL . 'css/library.css', array(), Visualizer_Plugin::VERSION );
270 625 $this->_addFilter( 'media_upload_tabs', 'setupVisualizerTab' );
271 626 wp_enqueue_media();
272 627 wp_enqueue_script(
273 - 'visualizer-library', VISUALIZER_ABSURL . 'js/library.js', array(
628 + 'visualizer-library',
629 + VISUALIZER_ABSURL . 'js/library.js',
630 + array(
274 631 'jquery',
275 632 'media-views',
276 - ), Visualizer_Plugin::VERSION, true
633 + ),
634 + Visualizer_Plugin::VERSION,
635 + true
277 636 );
278 - wp_enqueue_script( 'google-jsapi-new', '//www.gstatic.com/charts/loader.js', array(), null, true );
279 - wp_enqueue_script( 'google-jsapi-old', '//www.google.com/jsapi', array( 'google-jsapi-new' ), null, true );
280 - wp_enqueue_script(
281 - 'visualizer-render', VISUALIZER_ABSURL . 'js/render.js', array(
282 - 'google-jsapi-old',
283 - 'visualizer-library',
284 - ), Visualizer_Plugin::VERSION, true
285 - );
637 +
638 + wp_enqueue_script( 'visualizer-customization', $this->get_user_customization_js(), array(), null, true );
639 +
640 + $query = $this->getQuery();
641 + while ( $query->have_posts() ) {
642 + $chart = $query->next_post();
643 + $library = $this->load_chart_type( $chart->ID );
644 + if ( is_null( $library ) ) {
645 + continue;
646 + }
647 + wp_enqueue_script(
648 + "visualizer-render-$library",
649 + VISUALIZER_ABSURL . 'js/render-facade.js',
650 + apply_filters( 'visualizer_assets_render', array( 'visualizer-library', 'visualizer-customization' ), true ),
651 + Visualizer_Plugin::VERSION,
652 + true
653 + );
654 + }
286 655 }
287 656 }
288 657
289 658 /**
@@ -310,24 +679,52 @@
310 679 *
311 680 * @access public
312 681 */
313 682 public function registerAdminMenu() {
314 - $title = esc_html__( 'Visualizer Library', 'visualizer' );
315 - $callback = array( $this, 'renderLibraryPage' );
316 - $this->_libraryPage = add_submenu_page( 'upload.php', $title, $title, 'edit_posts', Visualizer_Plugin::NAME, $callback );
683 + $svg_base64_icon = 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNzdweCIgaGVpZ2h0PSI3N3B4IiB2aWV3Qm94PSIwIDAgNzcgNzciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDUyLjYgKDY3NDkxKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Db21iaW5lZCBTaGFwZTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQcm9kdWN0LVBhZ2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJXb3JkUHJlc3MtcGx1Z2lucyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE5MC4wMDAwMDAsIC00MzUuMDAwMDAwKSIgZmlsbD0iIzM5QzNEMiI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMjguNSw1MTIgQzIwNy4yMzcwMzcsNTEyIDE5MCw0OTQuNzYyOTYzIDE5MCw0NzMuNSBDMTkwLDQ1Mi4yMzcwMzcgMjA3LjIzNzAzNyw0MzUgMjI4LjUsNDM1IEMyNDkuNzYyOTYzLDQzNSAyNjcsNDUyLjIzNzAzNyAyNjcsNDczLjUgQzI2Nyw0OTQuNzYyOTYzIDI0OS43NjI5NjMsNTEyIDIyOC41LDUxMiBaIE0yNDYuODQzNzUsNDgzLjU5MjA1OSBMMjE1LjYyNSw0ODMuNTkyMDU5IEwyMTUuNjI1LDQ2MC44MjY1NDQgQzIxNS42MjUsNDYwLjE2NDU0NyAyMTUuMTA3NTc4LDQ1OS42MjgzNTkgMjE0LjQ2ODc1LDQ1OS42MjgzNTkgTDIxMi4xNTYyNSw0NTkuNjI4MzU5IEMyMTEuNTE3NDIyLDQ1OS42MjgzNTkgMjExLDQ2MC4xNjQ1NDcgMjExLDQ2MC44MjY1NDQgTDIxMSw0ODUuOTg4NDI5IEMyMTEsNDg3LjMxMTY3NCAyMTIuMDM1NTY2LDQ4OC4zODQ3OTggMjEzLjMxMjUsNDg4LjM4NDc5OCBMMjQ2Ljg0Mzc1LDQ4OC4zODQ3OTggQzI0Ny40ODI1NzgsNDg4LjM4NDc5OCAyNDgsNDg3Ljg0ODYxMSAyNDgsNDg3LjE4NjYxMyBMMjQ4LDQ4NC43OTAyNDQgQzI0OCw0ODQuMTI4MjQ2IDI0Ny40ODI1NzgsNDgzLjU5MjA1OSAyNDYuODQzNzUsNDgzLjU5MjA1OSBaIE0yNDQuNTMxMjUsNDYyLjAyNDcyOSBMMjM1Ljk5OTU3LDQ2Mi4wMjQ3MjkgQzIzNC40NTQ1MzEsNDYyLjAyNDcyOSAyMzMuNjgwNTY2LDQ2My45NjA1NDcgMjM0Ljc3MzIyMyw0NjUuMDkyODMyIEwyMzcuMTE0NjI5LDQ2Ny41MTkxNTYgTDIzMS44MTI1LDQ3My4wMTQzMzIgTDIyNi41MTAzNzEsNDY3LjUxOTkwNSBDMjI1LjYwNzA1MSw0NjYuNTgzODIzIDIyNC4xNDI5NDksNDY2LjU4MzgyMyAyMjMuMjQwMzUyLDQ2Ny41MTk5MDUgTDIxOC4yNzY0MjYsNDcyLjY2Mzg2MyBDMjE3LjgyNDc2Niw0NzMuMTMxOTA0IDIxNy44MjQ3NjYsNDczLjg5MDUwNSAyMTguMjc2NDI2LDQ3NC4zNTg1NDYgTDIxOS45MTEwNzQsNDc2LjA1MjQ4IEMyMjAuMzYyNzM0LDQ3Ni41MjA1MjEgMjIxLjA5NDc4NSw0NzYuNTIwNTIxIDIyMS41NDY0NDUsNDc2LjA1MjQ4IEwyMjQuODc1LDQ3Mi42MDI0NTYgTDIzMC4xNzcxMjksNDc4LjA5Njg4MyBDMjMxLjA4MDQ0OSw0NzkuMDMyOTY1IDIzMi41NDQ1NTEsNDc5LjAzMjk2NSAyMzMuNDQ3MTQ4LDQ3OC4wOTY4ODMgTDI0MC4zODQ2NDgsNDcwLjkwNzc3MyBMMjQyLjcyNjA1NSw0NzMuMzM0MDk4IEMyNDMuODE4NzExLDQ3NC40NjYzODIgMjQ1LjY4Njc3Nyw0NzMuNjY0MzQ3IDI0NS42ODY3NzcsNDcyLjA2MzI3MyBMMjQ1LjY4Njc3Nyw0NjMuMjIyOTE0IEMyNDUuNjg3NSw0NjIuNTYwOTE3IDI0NS4xNzAwNzgsNDYyLjAyNDcyOSAyNDQuNTMxMjUsNDYyLjAyNDcyOSBaIiBpZD0iQ29tYmluZWQtU2hhcGUiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==';
684 +
685 + $this->_libraryPage = add_menu_page( __( 'Visualizer', 'visualizer' ), __( 'Visualizer', 'visualizer' ), 'edit_posts', Visualizer_Plugin::NAME, array( $this, 'renderLibraryPage' ), $svg_base64_icon, 99.7666 );
686 +
687 + add_submenu_page(
688 + Visualizer_Plugin::NAME,
689 + __( 'Chart Library', 'visualizer' ),
690 + __( 'Chart Library', 'visualizer' ),
691 + 'edit_posts',
692 + admin_url( 'admin.php?page=' . Visualizer_Plugin::NAME )
693 + );
694 + add_submenu_page(
695 + Visualizer_Plugin::NAME,
696 + __( 'Add New Chart', 'visualizer' ),
697 + __( 'Add New Chart', 'visualizer' ),
698 + 'edit_posts',
699 + admin_url( 'admin.php?page=' . Visualizer_Plugin::NAME . '&vaction=addnew' )
700 + );
701 + add_submenu_page(
702 + Visualizer_Plugin::NAME,
703 + __( 'Support', 'visualizer' ),
704 + __( 'Support', 'visualizer' ) . '<span class="dashicons dashicons-editor-help more-features-icon" style="width: 17px; height: 17px; margin-left: 4px; color: #ffca54; font-size: 17px; vertical-align: -3px;"></span>',
705 + 'edit_posts',
706 + 'viz-support',
707 + array( $this, 'renderSupportPage' )
708 + );
709 + remove_submenu_page( Visualizer_Plugin::NAME, Visualizer_Plugin::NAME );
317 710 }
318 711
319 712 /**
320 - * Renders visualizer library page.
321 - *
322 - * @since 1.0.0
323 - *
324 - * @access public
713 + * Get the instance of WP_Query that fetches the charts as per the given criteria.
325 714 */
326 - public function renderLibraryPage() {
715 + private function getQuery() {
716 + static $q;
717 + if ( ! is_null( $q ) ) {
718 + return $q;
719 + }
720 +
327 721 // get current page
328 722 $page = filter_input(
329 - INPUT_GET, 'vpage', FILTER_VALIDATE_INT, array(
723 + INPUT_GET,
724 + 'vpage',
725 + FILTER_VALIDATE_INT,
726 + array(
330 727 'options' => array(
331 728 'min_range' => 1,
332 729 'default' => 1,
333 730 ),
@@ -340,9 +737,9 @@
340 737 'paged' => $page,
341 738 );
342 739 // add chart type filter to the query arguments
343 740 $filter = filter_input( INPUT_GET, 'type' );
344 - if ( $filter && in_array( $filter, Visualizer_Plugin::getChartTypes() ) ) {
741 + if ( $filter && in_array( $filter, Visualizer_Plugin::getChartTypes(), true ) ) {
345 742 $query_args['meta_query'] = array(
346 743 array(
347 744 'key' => Visualizer_Plugin::CF_CHART_TYPE,
348 745 'value' => $filter,
@@ -363,49 +760,130 @@
363 760 $meta = isset( $query_args['meta_query'] ) ? $query_args['meta_query'] : array();
364 761 $meta[] = $query;
365 762 $query_args['meta_query'] = $meta;
366 763 }
367 - // Added by Ash/Upwork
368 - // fetch charts
764 + $q = new WP_Query( apply_filters( 'visualizer_query_args', $query_args ) );
765 + return $q;
766 + }
767 +
768 + /**
769 + * Renders support page.
770 + *
771 + * @since 3.3.0
772 + *
773 + * @access public
774 + */
775 + public function renderSupportPage() {
776 + wp_enqueue_style( 'visualizer-upsell', VISUALIZER_ABSURL . 'css/upsell.css', array(), Visualizer_Plugin::VERSION );
777 + include_once VISUALIZER_ABSPATH . '/templates/support.php';
778 + }
779 +
780 + /**
781 + * Renders visualizer library page.
782 + *
783 + * @since 1.0.0
784 + *
785 + * @access public
786 + */
787 + public function renderLibraryPage() {
369 788 $charts = array();
370 - $query = new WP_Query( $query_args );
789 + $query = $this->getQuery();
790 +
791 + // get current page
792 + $page = filter_input(
793 + INPUT_GET,
794 + 'vpage',
795 + FILTER_VALIDATE_INT,
796 + array(
797 + 'options' => array(
798 + 'min_range' => 1,
799 + 'default' => 1,
800 + ),
801 + )
802 + );
803 + // add chart type filter to the query arguments
804 + $filter = filter_input( INPUT_GET, 'type' );
805 + if ( ! ( $filter && in_array( $filter, Visualizer_Plugin::getChartTypes(), true ) ) ) {
806 + $filter = 'all';
807 + }
808 +
809 + $css = '';
371 810 while ( $query->have_posts() ) {
372 811 $chart = $query->next_post();
812 +
813 + // if the user has updated a chart and instead of saving it, has closed the modal. If the user refreshes, they should get the original chart.
814 + $chart = $this->handleExistingRevisions( $chart->ID, $chart );
815 + // refresh a "live" db query chart.
816 + $chart = apply_filters( 'visualizer_schedule_refresh_chart', $chart, $chart->ID, false );
817 +
818 + $type = get_post_meta( $chart->ID, Visualizer_Plugin::CF_CHART_TYPE, true );
819 +
373 820 // fetch and update settings
374 821 $settings = get_post_meta( $chart->ID, Visualizer_Plugin::CF_SETTINGS, true );
375 - unset( $settings['height'], $settings['width'] );
376 - $type = get_post_meta( $chart->ID, Visualizer_Plugin::CF_CHART_TYPE, true );
822 +
823 + $settings = apply_filters( Visualizer_Plugin::FILTER_GET_CHART_SETTINGS, $settings, $chart->ID, $type );
824 + if ( ! empty( $atts['settings'] ) ) {
825 + $settings = apply_filters( $atts['settings'], $settings, $chart->ID, $type );
826 + }
827 +
828 + if ( $settings ) {
829 + unset( $settings['height'], $settings['width'], $settings['chartArea'] );
830 + }
831 +
377 832 $series = apply_filters( Visualizer_Plugin::FILTER_GET_CHART_SERIES, get_post_meta( $chart->ID, Visualizer_Plugin::CF_SERIES, true ), $chart->ID, $type );
378 833 $data = apply_filters( Visualizer_Plugin::FILTER_GET_CHART_DATA, unserialize( html_entity_decode( $chart->post_content ) ), $chart->ID, $type );
834 +
835 + $library = $this->load_chart_type( $chart->ID );
836 +
837 + $id = 'visualizer-' . $chart->ID;
838 + $arguments = $this->get_inline_custom_css( $id, $settings );
839 + if ( ! empty( $arguments ) ) {
840 + $css .= $arguments[0];
841 + $settings = $arguments[1];
842 + }
843 +
379 844 // add chart to the array
380 - $charts[ 'visualizer-' . $chart->ID ] = array(
845 + $charts[ $id ] = array(
381 846 'id' => $chart->ID,
382 847 'type' => $type,
383 848 'series' => $series,
384 849 'settings' => $settings,
385 850 'data' => $data,
851 + 'library' => $library,
386 852 );
387 853 }
388 854 // enqueue charts array
389 855 $ajaxurl = admin_url( 'admin-ajax.php' );
390 856 wp_localize_script(
391 - 'visualizer-library', 'visualizer', array(
857 + 'visualizer-library',
858 + 'visualizer',
859 + array(
860 + 'language' => $this->get_language(),
861 + 'map_api_key' => get_option( 'visualizer-map-api-key' ),
392 862 'charts' => $charts,
393 863 'urls' => array(
394 - 'base' => add_query_arg( 'vpage', false ),
864 + 'base' => add_query_arg( array( 'vpage' => false, 'vaction' => false ) ),
395 865 'create' => add_query_arg(
396 866 array(
397 867 'action' => Visualizer_Plugin::ACTION_CREATE_CHART,
398 868 'library' => 'yes',
399 - ), $ajaxurl
869 + 'type' => isset( $_GET['type'] ) ? $_GET['type'] : '',
870 + 'chart-library' => isset( $_GET['chart-library'] ) ? $_GET['chart-library'] : '',
871 + 'vaction' => false,
872 + ),
873 + $ajaxurl
400 874 ),
401 875 'edit' => add_query_arg(
402 876 array(
403 877 'action' => Visualizer_Plugin::ACTION_EDIT_CHART,
404 878 'library' => 'yes',
405 - ), $ajaxurl
879 + 'vaction' => false,
880 + ),
881 + $ajaxurl
406 882 ),
407 883 ),
884 + 'page_type' => 'library',
885 + 'is_front' => false,
408 886 )
409 887 );
410 888 // render library page
411 889 $render = new Visualizer_Render_Library();
@@ -410,12 +888,13 @@
410 888 // render library page
411 889 $render = new Visualizer_Render_Library();
412 890 $render->charts = $charts;
413 891 $render->type = $filter;
414 - $render->types = self::_getChartTypesLocalized();
892 + $render->types = self::_getChartTypesLocalized( false, false, false, true );
893 + $render->custom_css = $css;
415 894 $render->pagination = paginate_links(
416 895 array(
417 - 'base' => add_query_arg( 'vpage', '%#%' ),
896 + 'base' => add_query_arg( array( 'vpage' => '%#%', 'vaction' => false ) ),
418 897 'format' => '',
419 898 'current' => $page,
420 899 'total' => $query->max_num_pages,
421 900 'type' => 'array',
@@ -436,14 +915,14 @@
436 915 *
437 916 * @return array Updated array of action links.
438 917 */
439 918 public function getPluginActionLinks( $links, $file ) {
440 - if ( $file == plugin_basename( VISUALIZER_BASEFILE ) ) {
919 + if ( $file === plugin_basename( VISUALIZER_BASEFILE ) ) {
441 920 array_unshift(
442 921 $links,
443 922 sprintf(
444 923 '<a href="%s">%s</a>',
445 - admin_url( 'upload.php?page=' . Visualizer_Plugin::NAME ),
924 + admin_url( 'admin.php?page=' . Visualizer_Plugin::NAME ),
446 925 esc_html__( 'Library', 'visualizer' )
447 926 )
448 927 );
449 928 }
@@ -463,17 +942,17 @@
463 942 *
464 943 * @return array Updated array of plugin meta links.
465 944 */
466 945 public function getPluginMetaLinks( $plugin_meta, $plugin_file ) {
467 - if ( $plugin_file == plugin_basename( VISUALIZER_BASEFILE ) ) {
946 + if ( $plugin_file === plugin_basename( VISUALIZER_BASEFILE ) ) {
468 947 // knowledge base link
469 948 $plugin_meta[] = sprintf(
470 - '<a href="https://github.com/codeinwp/visualizer/wiki" target="_blank">%s</a>',
471 - esc_html__( 'Knowledge Base', 'visualizer' )
949 + '<a href="' . VISUALIZER_MAIN_DOC . '" target="_blank">%s</a>',
950 + esc_html__( 'Docs', 'visualizer' )
472 951 );
473 952 // flattr link
474 953 $plugin_meta[] = sprintf(
475 - '<a style="color:red" href="https://themeisle.com/plugins/visualizer-charts-and-graphs-pro-addon/" target="_blank">%s</a>',
954 + '<a style="color:red" href="' . Visualizer_Plugin::PRO_TEASER_URL . '" target="_blank">%s</a>',
476 955 esc_html__( 'Pro Addon', 'visualizer' )
477 956 );
478 957 }
479 958