PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.8.1
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.8.1
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.php +314 -35 3.1.33.8.1 View file →
@@ -65,12 +65,29 @@
65 65 $this->_plugin = $plugin;
66 66
67 67 $this->_addFilter( Visualizer_Plugin::FILTER_UNDO_REVISIONS, 'undoRevisions', 10, 2 );
68 68 $this->_addFilter( Visualizer_Plugin::FILTER_HANDLE_REVISIONS, 'handleExistingRevisions', 10, 2 );
69 + $this->_addFilter( Visualizer_Plugin::FILTER_GET_CHART_DATA_AS, 'getDataAs', 10, 3 );
70 + $this->_addAction( 'pre_get_posts', 'PreGetPosts' );
71 + register_shutdown_function( array($this, 'onShutdown') );
69 72
70 73 }
71 74
72 75 /**
76 + * Register a shutdown hook to catch fatal errors.
77 + *
78 + * @since ?
79 + *
80 + * @access public
81 + */
82 + public function onShutdown() {
83 + $error = error_get_last();
84 + if ( $error && $error['type'] === E_ERROR && false !== strpos( $error['file'], 'Visualizer/' ) ) {
85 + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'Critical error %s', print_r( $error, true ) ), 'error', __FILE__, __LINE__ );
86 + }
87 + }
88 +
89 + /**
73 90 * Registers an action hook.
74 91 *
75 92 * @since 1.0.0
76 93 * @uses add_action() To register action hook.
@@ -147,8 +164,17 @@
147 164 return $this;
148 165 }
149 166
150 167 /**
168 + * A wrapper around the actual function _getDataAs. This function is invoked as a filter.
169 + *
170 + * @since 3.2.0
171 + */
172 + public function getDataAs( $final, $chart_id, $type ) {
173 + return $this->_getDataAs( $chart_id, $type );
174 + }
175 +
176 + /**
151 177 * Extracts the data for a chart and prepares it for the given type.
152 178 *
153 179 * @access public
154 180 * @param int $chart_id The chart id.
@@ -158,15 +184,15 @@
158 184 $final = null;
159 185 $success = false;
160 186 if ( $chart_id ) {
161 187 $chart = get_post( $chart_id );
162 - $success = $chart && $chart->post_type == Visualizer_Plugin::CPT_VISUALIZER;
188 + $success = $chart && $chart->post_type === Visualizer_Plugin::CPT_VISUALIZER;
163 189 }
164 190 if ( $success ) {
165 191 $settings = get_post_meta( $chart_id, Visualizer_Plugin::CF_SETTINGS, true );
166 192 $rows = array();
167 193 $series = get_post_meta( $chart_id, Visualizer_Plugin::CF_SERIES, true );
168 - $data = unserialize( $chart->post_content );
194 + $data = self::get_chart_data( $chart, $type, false );
169 195 if ( ! empty( $series ) ) {
170 196 $row = array();
171 197 foreach ( $series as $array ) {
172 198 $row[] = $array['label'];
@@ -195,14 +221,29 @@
195 221 }
196 222 }
197 223 }
198 224
199 - $filename = isset( $settings['title'] ) && ! empty( $settings['title'] ) ? $settings['title'] : 'visualizer#' . $chart_id;
225 + $title = 'visualizer#' . $chart_id;
226 + if ( ! empty( $settings['title'] ) ) {
227 + $title = $settings['title'];
228 + }
229 + // for ChartJS, title is an array.
230 + if ( is_array( $title ) && isset( $title['text'] ) ) {
231 + $title = $title['text'];
232 + }
233 + if ( empty( $title ) ) {
234 + $title = 'visualizer#' . $chart_id;
235 + }
200 236
237 + $filename = $title;
238 +
201 239 switch ( $type ) {
202 240 case 'csv':
203 - $final = $this->_getCSV( $rows, $filename );
241 + $final = $this->_getCSV( $rows, $filename, false );
204 242 break;
243 + case 'csv-display':
244 + $final = $this->_getCSV( $rows, $filename, true );
245 + break;
205 246 case 'xls':
206 247 $final = $this->_getExcel( $rows, $filename );
207 248 break;
208 249 case 'print':
@@ -207,8 +248,11 @@
207 248 break;
208 249 case 'print':
209 250 $final = $this->_getHTML( $rows );
210 251 break;
252 + case 'image':
253 + $final = $this->_getImage( $chart );
254 + break;
211 255 }
212 256 }
213 257 return $final;
214 258 }
@@ -218,24 +262,46 @@
218 262 *
219 263 * @access private
220 264 * @param array $rows The array of data.
221 265 * @param string $filename The name of the file to use.
266 + * @param bool $enclose Enclose strings that have commas in them in double quotes.
222 267 */
223 - private function _getCSV( $rows, $filename ) {
268 + private function _getCSV( $rows, $filename, $enclose ) {
224 269 $filename .= '.csv';
225 270
271 + $bom = chr( 0xEF ) . chr( 0xBB ) . chr( 0xBF );
226 272 $fp = tmpfile();
273 + if ( null === $fp ) {
274 + $fp = fopen( wp_tempnam(), 'w+' );
275 + }
276 + if ( ! apply_filters( 'vizualizer_export_include_series_type', true ) ) {
277 + unset( $rows[1] );
278 + $rows = array_values( $rows );
279 + }
227 280 // support for MS Excel
228 - fprintf( $fp, $bom = ( chr( 0xEF ) . chr( 0xBB ) . chr( 0xBF ) ) );
281 + fprintf( $fp, $bom );
229 282 foreach ( $rows as $row ) {
230 283 fputcsv( $fp, $row );
231 284 }
232 285 rewind( $fp );
233 286 $csv = '';
287 + // phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.FoundInWhileCondition
234 288 while ( ( $array = fgetcsv( $fp ) ) !== false ) {
235 289 if ( strlen( $csv ) > 0 ) {
236 290 $csv .= PHP_EOL;
237 291 }
292 + // if enclosure is required, check every item of this line
293 + // if a comma exists in the item, add enclosure.
294 + if ( $enclose ) {
295 + $temp_array = array();
296 + foreach ( $array as $item ) {
297 + if ( strpos( $item, ',' ) !== false ) {
298 + $item = VISUALIZER_CSV_ENCLOSURE . $item . VISUALIZER_CSV_ENCLOSURE;
299 + }
300 + $temp_array[] = $item;
301 + }
302 + $array = $temp_array;
303 + }
238 304 $csv .= implode( ',', $array );
239 305 }
240 306 fclose( $fp );
241 307
@@ -241,8 +307,9 @@
241 307
242 308 return array(
243 309 'csv' => $csv,
244 310 'name' => $filename,
311 + 'string' => str_replace( $bom, '', $csv ),
245 312 );
246 313 }
247 314
248 315 /**
@@ -255,14 +322,22 @@
255 322 private function _getExcel( $rows, $filename ) {
256 323 // PHPExcel did not like sheet names longer than 31 characters and we will assume the same with PhpSpreadsheet
257 324 $chart = substr( $filename, 0, 30 );
258 325 $filename .= '.xlsx';
259 -
326 + if ( ! apply_filters( 'vizualizer_export_include_series_type', true ) ) {
327 + unset( $rows[1] );
328 + $rows = array_values( $rows );
329 + $rows = array_map(
330 + function( $r ) {
331 + return array_map( 'strval', $r );
332 + },
333 + $rows
334 + );
335 + }
260 336 $vendor_file = VISUALIZER_ABSPATH . '/vendor/autoload.php';
261 337 if ( is_readable( $vendor_file ) ) {
262 338 include_once( $vendor_file );
263 339 }
264 -
265 340 $xlsData = '';
266 341 if ( class_exists( 'PhpOffice\PhpSpreadsheet\Spreadsheet' ) ) {
267 342 $doc = new PhpOffice\PhpSpreadsheet\Spreadsheet();
268 343 $doc->getActiveSheet()->fromArray( $rows, null, 'A1' );
@@ -279,8 +354,9 @@
279 354 }
280 355 return array(
281 356 'csv' => 'data:application/vnd.ms-excel;base64,' . base64_encode( $xlsData ),
282 357 'name' => $filename,
358 + 'raw' => base64_encode( $xlsData ),
283 359 );
284 360 }
285 361
286 362 /**
@@ -310,8 +386,14 @@
310 386
311 387 $table = '<table class="visualizer-print">';
312 388 $index = 0;
313 389 foreach ( $rows as $row ) {
390 + // skip the data type row.
391 + if ( 1 === $index ) {
392 + $index++;
393 + continue;
394 + }
395 +
314 396 $table .= '<tr>';
315 397 foreach ( $row as $col ) {
316 398 if ( $index === 0 ) {
317 399 $table .= '<th>' . $col . '</th>';
@@ -332,8 +414,22 @@
332 414 );
333 415 }
334 416
335 417 /**
418 + * Disable revisions temporarily for visualizer post type.
419 + */
420 + protected final function disableRevisionsTemporarily() {
421 + add_filter(
422 + 'wp_revisions_to_keep', function( $num, $post ) {
423 + if ( $post->post_type === Visualizer_Plugin::CPT_VISUALIZER ) {
424 + return 0;
425 + }
426 + return $num;
427 + }, 10, 2
428 + );
429 + }
430 +
431 + /**
336 432 * Undo revisions for the chart, and if necessary, restore the earliest version.
337 433 *
338 434 * @return bool If any revisions were found.
339 435 */
@@ -338,9 +434,11 @@
338 434 * @return bool If any revisions were found.
339 435 */
340 436 public final function undoRevisions( $chart_id, $restore = false ) {
341 437 do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'undoRevisions for %d with%s restore', $chart_id, ( $restore ? '' : 'out' ) ), 'debug', __FILE__, __LINE__ );
342 -
438 + if ( get_post_type( $chart_id ) !== Visualizer_Plugin::CPT_VISUALIZER ) {
439 + return false;
440 + }
343 441 $revisions = wp_get_post_revisions( $chart_id, array( 'order' => 'ASC' ) );
344 442 if ( count( $revisions ) > 1 ) {
345 443 $revision_ids = array_keys( $revisions );
346 444
@@ -346,9 +444,9 @@
346 444
347 445 do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'found %d revisions = %s', count( $revisions ), print_r( $revision_ids, true ) ), 'debug', __FILE__, __LINE__ );
348 446
349 447 // when we restore, a new revision is likely to be created. so, let's disable revisions for the time being.
350 - add_filter( 'wp_revisions_to_keep', '__return_false' );
448 + $this->disableRevisionsTemporarily();
351 449
352 450 if ( $restore ) {
353 451 // restore to the oldest one i.e. the first one.
354 452 wp_restore_post_revision( array_shift( $revision_ids ) );
@@ -367,10 +465,13 @@
367 465 /**
368 466 * If existing revisions exist for the chart, restore the earliest version and then create a new revision to initiate editing.
369 467 */
370 468 public final function handleExistingRevisions( $chart_id, $chart ) {
469 +
371 470 do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'handleExistingRevisions for %d', $chart_id ), 'debug', __FILE__, __LINE__ );
372 -
471 + if ( get_post_type( $chart_id ) !== Visualizer_Plugin::CPT_VISUALIZER ) {
472 + return $chart_id;
473 + }
373 474 // undo revisions.
374 475 $revisions_found = $this->undoRevisions( $chart_id, true );
375 476
376 477 // create revision for the edit action.
@@ -418,11 +519,16 @@
418 519 require_once( ABSPATH . 'wp-admin/includes/file.php' );
419 520 WP_Filesystem();
420 521 global $wp_filesystem;
421 522
422 - $dir = $wp_filesystem->wp_content_dir() . 'uploads/visualizer';
423 - $file = $wp_filesystem->wp_content_dir() . 'uploads/visualizer/customization.js';
523 + $multisite_arg = '/';
524 + if ( is_multisite() && ! is_main_site() ) {
525 + $multisite_arg = '/sites/' . get_current_blog_id() . '/';
526 + }
424 527
528 + $dir = $wp_filesystem->wp_content_dir() . 'uploads' . $multisite_arg . 'visualizer';
529 + $file = $wp_filesystem->wp_content_dir() . 'uploads' . $multisite_arg . 'visualizer/customization.js';
530 +
425 531 if ( $wp_filesystem->is_readable( $file ) ) {
426 532 return $specific;
427 533 }
428 534
@@ -431,8 +537,9 @@
431 537 return $default;
432 538 }
433 539
434 540 if ( ! $wp_filesystem->exists( $dir ) ) {
541 + // phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.Found
435 542 if ( ( $done = $wp_filesystem->mkdir( $dir ) ) === false ) {
436 543 do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'Unable to create directory %s', $dir ), 'error', __FILE__, __LINE__ );
437 544 return $default;
438 545 }
@@ -440,8 +547,9 @@
440 547
441 548 // if file does not exist, copy.
442 549 if ( ! $wp_filesystem->exists( $file ) ) {
443 550 $src = str_replace( ABSPATH, $wp_filesystem->abspath(), VISUALIZER_ABSPATH . '/js/customization.js' );
551 + // phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.Found
444 552 if ( ( $done = $wp_filesystem->copy( $src, $file ) ) === false ) {
445 553 do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'Unable to copy file %s to %s', $src, $file ), 'error', __FILE__, __LINE__ );
446 554 return $default;
447 555 }
@@ -453,18 +561,21 @@
453 561 /**
454 562 * Load the class for the given chart's chart type so that its assets can be loaded.
455 563 */
456 564 protected function load_chart_type( $chart_id ) {
457 - $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true );
458 - $name = 'Visualizer_Render_Sidebar_Type_' . ucwords( $type );
565 + $name = $this->load_chart_class_name( $chart_id );
459 566 $class = null;
460 567 if ( class_exists( $name ) || true === apply_filters( 'visualizer_load_chart', false, $name ) ) {
568 + if ( 'Visualizer_Render_Sidebar_Type_DataTable_DataTable' === $name ) {
569 + $name = 'Visualizer_Render_Sidebar_Type_DataTable_Tabular';
570 + }
461 571 $class = new $name;
462 572 }
463 573
464 - if ( is_null( $class ) && VISUALIZER_PRO ) {
574 + if ( is_null( $class ) && Visualizer_Module::is_pro() ) {
465 575 // lets see if this type exists in pro. New Lite(3.1.0+) & old Pro(1.8.0-).
466 - $class = apply_filters( 'visualizer_pro_chart_type_sidebar', null, array( 'type' => $type, 'settings' => get_post_meta( $chart_id, Visualizer_Plugin::CF_SETTINGS, true ) ) );
576 + $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true );
577 + $class = apply_filters( 'visualizer_pro_chart_type_sidebar', null, array( 'id' => $chart_id, 'type' => $type, 'settings' => get_post_meta( $chart_id, Visualizer_Plugin::CF_SETTINGS, true ) ) );
467 578 }
468 579
469 580 return is_null( $class ) ? null : $class->getLibrary();
470 581 }
@@ -469,8 +580,26 @@
469 580 return is_null( $class ) ? null : $class->getLibrary();
470 581 }
471 582
472 583 /**
584 + * Returns the class name for the given chart's chart type.
585 + */
586 + protected function load_chart_class_name( $chart_id ) {
587 + $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true );
588 + $lib = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_LIBRARY, true );
589 +
590 + // backward compatibility.
591 + if ( empty( $lib ) ) {
592 + $lib = 'GoogleCharts';
593 + if ( 'dataTable' === $type ) {
594 + $lib = 'DataTable';
595 + }
596 + }
597 + $name = 'Visualizer_Render_Sidebar_Type_' . $lib . '_' . ucwords( $type );
598 + return $name;
599 + }
600 +
601 + /**
473 602 * Generates the inline CSS to apply to the chart and adds these classes to the settings.
474 603 *
475 604 * @access public
476 605 * @param int $id The id of the chart.
@@ -478,32 +607,31 @@
478 607 */
479 608 protected function get_inline_custom_css( $id, $settings ) {
480 609 $css = '';
481 610
482 - $arguments = array( '', $settings );
483 - if ( ! isset( $settings['customcss'] ) ) {
484 - return $arguments;
485 - }
486 -
487 611 $classes = array();
488 612 $css = '<style type="text/css" name="visualizer-custom-css" id="customcss-' . $id . '">';
489 - foreach ( $settings['customcss'] as $name => $element ) {
490 - $attributes = array();
491 - foreach ( $element as $property => $value ) {
492 - $attributes[] = $this->handle_css_property( $property, $value );
613 + if ( ! empty( $settings['customcss'] ) ) {
614 + foreach ( $settings['customcss'] as $name => $element ) {
615 + $attributes = array();
616 + foreach ( $element as $property => $value ) {
617 + $attributes[] = $this->handle_css_property( $property, $value );
618 + }
619 + $class_name = $id . $name;
620 + $properties = implode( ' !important; ', array_filter( $attributes ) );
621 + if ( ! empty( $properties ) ) {
622 + $css .= '.' . $class_name . ' {' . $properties . ' !important;}';
623 + $classes[ $name ] = $class_name;
624 + }
493 625 }
494 - $class_name = $id . $name;
495 - $properties = implode( '; ', array_filter( $attributes ) );
496 - if ( ! empty( $properties ) ) {
497 - $css .= '.' . $class_name . ' {' . $properties . ' !important;}';
498 - $classes[ $name ] = $class_name;
499 - }
626 + $settings['cssClassNames'] = $classes;
500 627 }
501 - $css .= '</style>';
502 628
503 - $settings['cssClassNames'] = $classes;
629 + $img_path = VISUALIZER_ABSURL . 'images';
630 + $css .= ".locker,.locker-loader{position:absolute;top:0;left:0;width:100%;height:100%}.locker{z-index:1000;opacity:.8;background-color:#fff;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80)}.locker-loader{z-index:1001;background:url($img_path/ajax-loader.gif) no-repeat center center}.dt-button{display:none!important}.visualizer-front-container.visualizer-lazy-render{content-visibility: auto;}.google-visualization-controls-categoryfilter label.google-visualization-controls-label {vertical-align: middle;}.google-visualization-controls-categoryfilter li.goog-inline-block {margin: 0 0.2em;}.google-visualization-controls-categoryfilter li {padding: 0 0.2em;}";
631 + $css .= '</style>';
504 632
505 - $arguments = array( $css, $settings );
633 + $arguments = array( $css, $settings );
506 634 apply_filters_ref_array( 'visualizer_inline_css', array( &$arguments ) );
507 635
508 636 return $arguments;
509 637 }
@@ -547,5 +675,156 @@
547 675 $q = new WP_Query( $args );
548 676 return $q->found_posts > 0;
549 677 }
550 678
679 + /**
680 + * Determines how many charts have been created.
681 + */
682 + protected static function numberOfCharts() {
683 + $args = array(
684 + 'post_type' => Visualizer_Plugin::CPT_VISUALIZER,
685 + 'fields' => 'ids',
686 + 'post_status' => 'publish',
687 + 'posts_per_page' => 300,
688 + );
689 +
690 + $q = new WP_Query( $args );
691 + return $q->found_posts;
692 + }
693 +
694 + /**
695 + * Checks if the PRO version is active.
696 + *
697 + * @since 3.3.0
698 + */
699 + public static function is_pro() {
700 + // versions of pro before 1.9.0 will use the constant VISUALIZER_PRO
701 + // versions of pro 1.9.0 onwards will use the filter
702 + return apply_filters( 'visualizer_is_pro', VISUALIZER_PRO );
703 + }
704 +
705 + /**
706 + * Checks if the PRO version is older than a particular version.
707 + *
708 + * @since 3.3.0
709 + */
710 + public static function is_pro_older_than( $version ) {
711 + return version_compare( VISUALIZER_PRO_VERSION, $version, '<' );
712 + }
713 +
714 + /**
715 + * Should we show some specific feature on the basis of the version?
716 + *
717 + * @since 3.4.0
718 + */
719 + public static function can_show_feature( $feature ) {
720 + switch ( $feature ) {
721 + case 'simple-editor':
722 + // if user has pro but an older version, then don't load the simple editor functionality
723 + // as the select box will not behave as expected because the pro editor's functionality will supercede.
724 + return ! Visualizer_Module::is_pro() || ! Visualizer_Module::is_pro_older_than( '1.9.2' );
725 + }
726 + return false;
727 + }
728 +
729 + /**
730 + * Gets the features for the provided license type.
731 + */
732 + public static final function get_features_for_license( $plan ) {
733 + switch ( $plan ) {
734 + case 1:
735 + return array( 'import-wp', 'db-query' );
736 + case 2:
737 + return array( 'schedule-chart', 'chart-permissions' );
738 + }
739 + }
740 +
741 + /**
742 + * Gets the chart content after common manipulations.
743 + */
744 + public static function get_chart_data( $chart, $type, $run_filter = true ) {
745 + // change HTML entities
746 + $post_content = html_entity_decode( htmlentities( $chart->post_content ) );
747 + $post_content = preg_replace_callback(
748 + '!s:(\d+):"(.*?)";!s',
749 + function ( $matches ) {
750 + if ( isset( $matches[2] ) ) {
751 + return 's:' . strlen( $matches[2] ) . ':"' . $matches[2] . '";';
752 + }
753 + },
754 + $post_content
755 + );
756 + $data = unserialize( $post_content );
757 + $altered = array();
758 + if ( ! empty( $data ) ) {
759 + foreach ( $data as $index => $array ) {
760 + if ( ! is_array( $index ) && is_array( $array ) ) {
761 + foreach ( $array as &$datum ) {
762 + if ( is_string( $datum ) ) {
763 + $datum = stripslashes( $datum );
764 + }
765 + }
766 + $altered[ $index ] = $array;
767 + }
768 + }
769 + }
770 + // if something goes wrong and the end result is empty, be safe and use the original data
771 + if ( empty( $altered ) ) {
772 + $altered = $data;
773 + }
774 + if ( $run_filter ) {
775 + return apply_filters( Visualizer_Plugin::FILTER_GET_CHART_DATA, $altered, $chart->ID, $type );
776 + }
777 + return $altered;
778 + }
779 +
780 + /**
781 + * Get chart image.
782 + *
783 + * @param object $chart Chart data.
784 + * @return string
785 + */
786 + public function _getImage( $chart = null ) {
787 + $image = '';
788 + if ( $chart ) {
789 + $chart_image = get_post_meta( $chart->ID, Visualizer_Plugin::CF_CHART_IMAGE, true );
790 + if ( ! empty( $chart_image ) ) {
791 + $image = wp_get_attachment_image( $chart_image, 'full' );
792 + }
793 + }
794 + return array(
795 + 'csv' => $image,
796 + );
797 + }
798 +
799 + /**
800 + * Filter chart title if visualizer post type.
801 + *
802 + * @param object $query WP Query object.
803 + * @return void
804 + */
805 + public function PreGetPosts( $query ) {
806 + if ( ! $query->is_main_query() ) {
807 + $post_type = $query->get( 'post_type' );
808 + if ( 'visualizer' === $post_type ) {
809 + $this->_addFilter( Visualizer_Plugin::FILTER_CHART_TITLE, 'filterChartTitle', 10, 2 );
810 + }
811 + }
812 + }
813 +
814 + /**
815 + * Filter chart title.
816 + *
817 + * @access public
818 + * @param string $post_title Post title.
819 + * @param int $post_id Post ID.
820 + * @return string
821 + */
822 + public function filterChartTitle( $post_title, $post_id ) {
823 + $post_type = get_post_type( $post_id );
824 + $post_title = trim( $post_title );
825 + if ( 'visualizer' === $post_type && 'Visualization' === $post_title ) {
826 + return sprintf( '%s #%d', $post_title, $post_id );
827 + }
828 + return $post_title;
829 + }
551 830 }