PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.8
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.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 3.10.4 All 148 releases
← All changes | classes/Visualizer/Module.php +30 -119 3.10.133.4.8 View file →
@@ -66,9 +66,8 @@
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 69 $this->_addFilter( Visualizer_Plugin::FILTER_GET_CHART_DATA_AS, 'getDataAs', 10, 3 );
70 - $this->_addAction( 'pre_get_posts', 'PreGetPosts' );
71 70 register_shutdown_function( array($this, 'onShutdown') );
72 71
73 72 }
74 73
@@ -248,11 +247,8 @@
248 247 break;
249 248 case 'print':
250 249 $final = $this->_getHTML( $rows );
251 250 break;
252 - case 'image':
253 - $final = $this->_getImage( $chart );
254 - break;
255 251 }
256 252 }
257 253 return $final;
258 254 }
@@ -268,20 +264,9 @@
268 264 private function _getCSV( $rows, $filename, $enclose ) {
269 265 $filename .= '.csv';
270 266
271 267 $bom = chr( 0xEF ) . chr( 0xBB ) . chr( 0xBF );
272 - // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
273 - $fp = function_exists( 'tmpfile' ) ? @tmpfile() : null;
274 - if ( null === $fp ) {
275 - if ( ! function_exists( 'wp_tempnam' ) ) {
276 - require_once ABSPATH . 'wp-admin/includes/file.php';
277 - }
278 - $fp = fopen( wp_tempnam(), 'w+' );
279 - }
280 - if ( ! apply_filters( 'vizualizer_export_include_series_type', true ) ) {
281 - unset( $rows[1] );
282 - $rows = array_values( $rows );
283 - }
268 + $fp = tmpfile();
284 269 // support for MS Excel
285 270 fprintf( $fp, $bom );
286 271 foreach ( $rows as $row ) {
287 272 fputcsv( $fp, $row );
@@ -326,22 +311,14 @@
326 311 private function _getExcel( $rows, $filename ) {
327 312 // PHPExcel did not like sheet names longer than 31 characters and we will assume the same with PhpSpreadsheet
328 313 $chart = substr( $filename, 0, 30 );
329 314 $filename .= '.xlsx';
330 - if ( ! apply_filters( 'vizualizer_export_include_series_type', true ) ) {
331 - unset( $rows[1] );
332 - $rows = array_values( $rows );
333 - $rows = array_map(
334 - function( $r ) {
335 - return array_map( 'strval', $r );
336 - },
337 - $rows
338 - );
339 - }
315 +
340 316 $vendor_file = VISUALIZER_ABSPATH . '/vendor/autoload.php';
341 317 if ( is_readable( $vendor_file ) ) {
342 318 include_once( $vendor_file );
343 319 }
320 +
344 321 $xlsData = '';
345 322 if ( class_exists( 'PhpOffice\PhpSpreadsheet\Spreadsheet' ) ) {
346 323 $doc = new PhpOffice\PhpSpreadsheet\Spreadsheet();
347 324 $doc->getActiveSheet()->fromArray( $rows, null, 'A1' );
@@ -522,12 +499,8 @@
522 499
523 500 require_once( ABSPATH . 'wp-admin/includes/file.php' );
524 501 WP_Filesystem();
525 502 global $wp_filesystem;
526 - if ( ! is_a( $wp_filesystem, 'WP_Filesystem_Base' ) ) {
527 - $creds = request_filesystem_credentials( site_url() );
528 - wp_filesystem( $creds );
529 - }
530 503
531 504 $multisite_arg = '/';
532 505 if ( is_multisite() && ! is_main_site() ) {
533 506 $multisite_arg = '/sites/' . get_current_blog_id() . '/';
@@ -615,31 +588,32 @@
615 588 */
616 589 protected function get_inline_custom_css( $id, $settings ) {
617 590 $css = '';
618 591
592 + $arguments = array( '', $settings );
593 + if ( ! isset( $settings['customcss'] ) ) {
594 + return $arguments;
595 + }
596 +
619 597 $classes = array();
620 598 $css = '<style type="text/css" name="visualizer-custom-css" id="customcss-' . $id . '">';
621 - if ( ! empty( $settings['customcss'] ) ) {
622 - foreach ( $settings['customcss'] as $name => $element ) {
623 - $attributes = array();
624 - foreach ( $element as $property => $value ) {
625 - $attributes[] = $this->handle_css_property( $property, $value );
626 - }
627 - $class_name = $id . $name;
628 - $properties = implode( ' !important; ', array_filter( $attributes ) );
629 - if ( ! empty( $properties ) ) {
630 - $css .= '.' . $class_name . ' {' . $properties . ' !important;}';
631 - $classes[ $name ] = $class_name;
632 - }
599 + foreach ( $settings['customcss'] as $name => $element ) {
600 + $attributes = array();
601 + foreach ( $element as $property => $value ) {
602 + $attributes[] = $this->handle_css_property( $property, $value );
633 603 }
634 - $settings['cssClassNames'] = $classes;
604 + $class_name = $id . $name;
605 + $properties = implode( ' !important; ', array_filter( $attributes ) );
606 + if ( ! empty( $properties ) ) {
607 + $css .= '.' . $class_name . ' {' . $properties . ' !important;}';
608 + $classes[ $name ] = $class_name;
609 + }
635 610 }
611 + $css .= '</style>';
636 612
637 - $img_path = VISUALIZER_ABSURL . 'images';
638 - $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;}.visualizer-front-container .dataTables_scrollHeadInner{margin: 0 auto;}";
639 - $css .= '</style>';
613 + $settings['cssClassNames'] = $classes;
640 614
641 - $arguments = array( $css, $settings );
615 + $arguments = array( $css, $settings );
642 616 apply_filters_ref_array( 'visualizer_inline_css', array( &$arguments ) );
643 617
644 618 return $arguments;
645 619 }
@@ -739,11 +713,11 @@
739 713 */
740 714 public static final function get_features_for_license( $plan ) {
741 715 switch ( $plan ) {
742 716 case 1:
743 - return array( 'import-wp', 'db-query', 'import-wc-report' );
717 + return array( 'import-wp', 'db-query' );
744 718 case 2:
745 - return array( 'schedule-chart', 'chart-permissions', 'import-chart', 'manual-data', 'data-filter-configuration', 'frontend-actions' );
719 + return array( 'schedule-chart', 'chart-permissions' );
746 720 }
747 721 }
748 722
749 723 /**
@@ -750,30 +724,18 @@
750 724 * Gets the chart content after common manipulations.
751 725 */
752 726 public static function get_chart_data( $chart, $type, $run_filter = true ) {
753 727 // change HTML entities
754 - $post_content = html_entity_decode( htmlentities( $chart->post_content ) );
755 - $post_content = preg_replace_callback(
756 - '!s:(\d+):"(.*?)";!s',
757 - function ( $matches ) {
758 - if ( isset( $matches[2] ) ) {
759 - return 's:' . strlen( $matches[2] ) . ':"' . $matches[2] . '";';
760 - }
761 - },
762 - $post_content
763 - );
764 - $data = unserialize( $post_content );
728 + $data = unserialize( html_entity_decode( $chart->post_content ) );
765 729 $altered = array();
766 - if ( ! empty( $data ) ) {
767 - foreach ( $data as $index => $array ) {
768 - if ( ! is_array( $index ) && is_array( $array ) ) {
769 - foreach ( $array as &$datum ) {
770 - if ( is_string( $datum ) ) {
771 - $datum = stripslashes( $datum );
772 - }
730 + foreach ( $data as $index => $array ) {
731 + if ( ! is_array( $index ) && is_array( $array ) ) {
732 + foreach ( $array as &$datum ) {
733 + if ( is_string( $datum ) ) {
734 + $datum = stripslashes( $datum );
773 735 }
774 - $altered[ $index ] = $array;
775 736 }
737 + $altered[ $index ] = $array;
776 738 }
777 739 }
778 740 // if something goes wrong and the end result is empty, be safe and use the original data
779 741 if ( empty( $altered ) ) {
@@ -782,57 +744,6 @@
782 744 if ( $run_filter ) {
783 745 return apply_filters( Visualizer_Plugin::FILTER_GET_CHART_DATA, $altered, $chart->ID, $type );
784 746 }
785 747 return $altered;
786 - }
787 -
788 - /**
789 - * Get chart image.
790 - *
791 - * @param object $chart Chart data.
792 - * @return string
793 - */
794 - public function _getImage( $chart = null ) {
795 - $image = '';
796 - if ( $chart ) {
797 - $chart_image = get_post_meta( $chart->ID, Visualizer_Plugin::CF_CHART_IMAGE, true );
798 - if ( ! empty( $chart_image ) ) {
799 - $image = wp_get_attachment_image( $chart_image, 'full' );
800 - }
801 - }
802 - return array(
803 - 'csv' => $image,
804 - );
805 - }
806 -
807 - /**
808 - * Filter chart title if visualizer post type.
809 - *
810 - * @param object $query WP Query object.
811 - * @return void
812 - */
813 - public function PreGetPosts( $query ) {
814 - if ( ! $query->is_main_query() ) {
815 - $post_type = $query->get( 'post_type' );
816 - if ( 'visualizer' === $post_type ) {
817 - $this->_addFilter( Visualizer_Plugin::FILTER_CHART_TITLE, 'filterChartTitle', 10, 2 );
818 - }
819 - }
820 - }
821 -
822 - /**
823 - * Filter chart title.
824 - *
825 - * @access public
826 - * @param string $post_title Post title.
827 - * @param int $post_id Post ID.
828 - * @return string
829 - */
830 - public function filterChartTitle( $post_title, $post_id ) {
831 - $post_type = get_post_type( $post_id );
832 - $post_title = trim( $post_title );
833 - if ( 'visualizer' === $post_type && 'Visualization' === $post_title ) {
834 - return sprintf( '%s #%d', $post_title, $post_id );
835 - }
836 - return $post_title;
837 748 }
838 749 }