PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.7.1
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.7.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 +20 -56 3.10.03.7.1 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
@@ -268,13 +267,9 @@
268 267 private function _getCSV( $rows, $filename, $enclose ) {
269 268 $filename .= '.csv';
270 269
271 270 $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 - $fp = fopen( wp_tempnam(), 'w+' );
276 - }
271 + $fp = tmpfile();
277 272 if ( ! apply_filters( 'vizualizer_export_include_series_type', true ) ) {
278 273 unset( $rows[1] );
279 274 $rows = array_values( $rows );
280 275 }
@@ -608,31 +603,32 @@
608 603 */
609 604 protected function get_inline_custom_css( $id, $settings ) {
610 605 $css = '';
611 606
607 + $arguments = array( '', $settings );
608 + if ( ! isset( $settings['customcss'] ) ) {
609 + return $arguments;
610 + }
611 +
612 612 $classes = array();
613 613 $css = '<style type="text/css" name="visualizer-custom-css" id="customcss-' . $id . '">';
614 - if ( ! empty( $settings['customcss'] ) ) {
615 - foreach ( $settings['customcss'] as $name => $element ) {
616 - $attributes = array();
617 - foreach ( $element as $property => $value ) {
618 - $attributes[] = $this->handle_css_property( $property, $value );
619 - }
620 - $class_name = $id . $name;
621 - $properties = implode( ' !important; ', array_filter( $attributes ) );
622 - if ( ! empty( $properties ) ) {
623 - $css .= '.' . $class_name . ' {' . $properties . ' !important;}';
624 - $classes[ $name ] = $class_name;
625 - }
614 + foreach ( $settings['customcss'] as $name => $element ) {
615 + $attributes = array();
616 + foreach ( $element as $property => $value ) {
617 + $attributes[] = $this->handle_css_property( $property, $value );
626 618 }
627 - $settings['cssClassNames'] = $classes;
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 + }
628 625 }
626 + $css .= '</style>';
629 627
630 - $img_path = VISUALIZER_ABSURL . 'images';
631 - $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;}";
632 - $css .= '</style>';
628 + $settings['cssClassNames'] = $classes;
633 629
634 - $arguments = array( $css, $settings );
630 + $arguments = array( $css, $settings );
635 631 apply_filters_ref_array( 'visualizer_inline_css', array( &$arguments ) );
636 632
637 633 return $arguments;
638 634 }
@@ -732,9 +728,9 @@
732 728 */
733 729 public static final function get_features_for_license( $plan ) {
734 730 switch ( $plan ) {
735 731 case 1:
736 - return array( 'import-wp', 'db-query', 'import-wc-report' );
732 + return array( 'import-wp', 'db-query' );
737 733 case 2:
738 734 return array( 'schedule-chart', 'chart-permissions' );
739 735 }
740 736 }
@@ -794,38 +790,6 @@
794 790 }
795 791 return array(
796 792 'csv' => $image,
797 793 );
798 - }
799 -
800 - /**
801 - * Filter chart title if visualizer post type.
802 - *
803 - * @param object $query WP Query object.
804 - * @return void
805 - */
806 - public function PreGetPosts( $query ) {
807 - if ( ! $query->is_main_query() ) {
808 - $post_type = $query->get( 'post_type' );
809 - if ( 'visualizer' === $post_type ) {
810 - $this->_addFilter( Visualizer_Plugin::FILTER_CHART_TITLE, 'filterChartTitle', 10, 2 );
811 - }
812 - }
813 - }
814 -
815 - /**
816 - * Filter chart title.
817 - *
818 - * @access public
819 - * @param string $post_title Post title.
820 - * @param int $post_id Post ID.
821 - * @return string
822 - */
823 - public function filterChartTitle( $post_title, $post_id ) {
824 - $post_type = get_post_type( $post_id );
825 - $post_title = trim( $post_title );
826 - if ( 'visualizer' === $post_type && 'Visualization' === $post_title ) {
827 - return sprintf( '%s #%d', $post_title, $post_id );
828 - }
829 - return $post_title;
830 794 }
831 795 }