| @@ -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,16 +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 | - if ( ! function_exists( 'wp_tempnam' ) ) { | |
| 276 | - require_once ABSPATH . 'wp-admin/includes/file.php'; | |
| 277 | - } | |
| 278 | - $fp = fopen( wp_tempnam(), 'w+' ); | |
| 279 | - } | |
| 271 | + $fp = tmpfile(); | |
| 280 | 272 | if ( ! apply_filters( 'vizualizer_export_include_series_type', true ) ) { |
| 281 | 273 | unset( $rows[1] ); |
| 282 | 274 | $rows = array_values( $rows ); |
| 283 | 275 | } |
| @@ -522,12 +514,8 @@ | ||
| 522 | 514 | |
| 523 | 515 | require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
| 524 | 516 | WP_Filesystem(); |
| 525 | 517 | 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 | 518 | |
| 531 | 519 | $multisite_arg = '/'; |
| 532 | 520 | if ( is_multisite() && ! is_main_site() ) { |
| 533 | 521 | $multisite_arg = '/sites/' . get_current_blog_id() . '/'; |
| @@ -634,9 +622,9 @@ | ||
| 634 | 622 | $settings['cssClassNames'] = $classes; |
| 635 | 623 | } |
| 636 | 624 | |
| 637 | 625 | $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;}"; | |
| 626 | + $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;}"; | |
| 639 | 627 | $css .= '</style>'; |
| 640 | 628 | |
| 641 | 629 | $arguments = array( $css, $settings ); |
| 642 | 630 | apply_filters_ref_array( 'visualizer_inline_css', array( &$arguments ) ); |
| @@ -739,11 +727,11 @@ | ||
| 739 | 727 | */ |
| 740 | 728 | public static final function get_features_for_license( $plan ) { |
| 741 | 729 | switch ( $plan ) { |
| 742 | 730 | case 1: |
| 743 | - return array( 'import-wp', 'db-query', 'import-wc-report' ); | |
| 731 | + return array( 'import-wp', 'db-query' ); | |
| 744 | 732 | case 2: |
| 745 | - return array( 'schedule-chart', 'chart-permissions', 'import-chart', 'manual-data', 'data-filter-configuration', 'frontend-actions' ); | |
| 733 | + return array( 'schedule-chart', 'chart-permissions' ); | |
| 746 | 734 | } |
| 747 | 735 | } |
| 748 | 736 | |
| 749 | 737 | /** |
| @@ -801,38 +789,6 @@ | ||
| 801 | 789 | } |
| 802 | 790 | return array( |
| 803 | 791 | 'csv' => $image, |
| 804 | 792 | ); |
| 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 | 793 | } |
| 838 | 794 | } |