| @@ -66,28 +66,12 @@ | ||
| 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 | - register_shutdown_function( array($this, 'onShutdown') ); | |
| 72 | 70 | |
| 73 | 71 | } |
| 74 | 72 | |
| 75 | 73 | /** |
| 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 | - /** | |
| 90 | 74 | * Registers an action hook. |
| 91 | 75 | * |
| 92 | 76 | * @since 1.0.0 |
| 93 | 77 | * @uses add_action() To register action hook. |
| @@ -190,9 +174,9 @@ | ||
| 190 | 174 | if ( $success ) { |
| 191 | 175 | $settings = get_post_meta( $chart_id, Visualizer_Plugin::CF_SETTINGS, true ); |
| 192 | 176 | $rows = array(); |
| 193 | 177 | $series = get_post_meta( $chart_id, Visualizer_Plugin::CF_SERIES, true ); |
| 194 | - $data = self::get_chart_data( $chart, $type, false ); | |
| 178 | + $data = unserialize( $chart->post_content ); | |
| 195 | 179 | if ( ! empty( $series ) ) { |
| 196 | 180 | $row = array(); |
| 197 | 181 | foreach ( $series as $array ) { |
| 198 | 182 | $row[] = $array['label']; |
| @@ -221,29 +205,14 @@ | ||
| 221 | 205 | } |
| 222 | 206 | } |
| 223 | 207 | } |
| 224 | 208 | |
| 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 | - } | |
| 209 | + $filename = isset( $settings['title'] ) && ! empty( $settings['title'] ) ? $settings['title'] : 'visualizer#' . $chart_id; | |
| 236 | 210 | |
| 237 | - $filename = $title; | |
| 238 | - | |
| 239 | 211 | switch ( $type ) { |
| 240 | 212 | case 'csv': |
| 241 | - $final = $this->_getCSV( $rows, $filename, false ); | |
| 213 | + $final = $this->_getCSV( $rows, $filename ); | |
| 242 | 214 | break; |
| 243 | - case 'csv-display': | |
| 244 | - $final = $this->_getCSV( $rows, $filename, true ); | |
| 245 | - break; | |
| 246 | 215 | case 'xls': |
| 247 | 216 | $final = $this->_getExcel( $rows, $filename ); |
| 248 | 217 | break; |
| 249 | 218 | case 'print': |
| @@ -248,11 +217,8 @@ | ||
| 248 | 217 | break; |
| 249 | 218 | case 'print': |
| 250 | 219 | $final = $this->_getHTML( $rows ); |
| 251 | 220 | break; |
| 252 | - case 'image': | |
| 253 | - $final = $this->_getImage( $chart ); | |
| 254 | - break; | |
| 255 | 221 | } |
| 256 | 222 | } |
| 257 | 223 | return $final; |
| 258 | 224 | } |
| @@ -262,26 +228,14 @@ | ||
| 262 | 228 | * |
| 263 | 229 | * @access private |
| 264 | 230 | * @param array $rows The array of data. |
| 265 | 231 | * @param string $filename The name of the file to use. |
| 266 | - * @param bool $enclose Enclose strings that have commas in them in double quotes. | |
| 267 | 232 | */ |
| 268 | - private function _getCSV( $rows, $filename, $enclose ) { | |
| 233 | + private function _getCSV( $rows, $filename ) { | |
| 269 | 234 | $filename .= '.csv'; |
| 270 | 235 | |
| 271 | 236 | $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 | - } | |
| 237 | + $fp = tmpfile(); | |
| 284 | 238 | // support for MS Excel |
| 285 | 239 | fprintf( $fp, $bom ); |
| 286 | 240 | foreach ( $rows as $row ) { |
| 287 | 241 | fputcsv( $fp, $row ); |
| @@ -292,20 +246,8 @@ | ||
| 292 | 246 | while ( ( $array = fgetcsv( $fp ) ) !== false ) { |
| 293 | 247 | if ( strlen( $csv ) > 0 ) { |
| 294 | 248 | $csv .= PHP_EOL; |
| 295 | 249 | } |
| 296 | - // if enclosure is required, check every item of this line | |
| 297 | - // if a comma exists in the item, add enclosure. | |
| 298 | - if ( $enclose ) { | |
| 299 | - $temp_array = array(); | |
| 300 | - foreach ( $array as $item ) { | |
| 301 | - if ( strpos( $item, ',' ) !== false ) { | |
| 302 | - $item = VISUALIZER_CSV_ENCLOSURE . $item . VISUALIZER_CSV_ENCLOSURE; | |
| 303 | - } | |
| 304 | - $temp_array[] = $item; | |
| 305 | - } | |
| 306 | - $array = $temp_array; | |
| 307 | - } | |
| 308 | 250 | $csv .= implode( ',', $array ); |
| 309 | 251 | } |
| 310 | 252 | fclose( $fp ); |
| 311 | 253 | |
| @@ -326,22 +268,14 @@ | ||
| 326 | 268 | private function _getExcel( $rows, $filename ) { |
| 327 | 269 | // PHPExcel did not like sheet names longer than 31 characters and we will assume the same with PhpSpreadsheet |
| 328 | 270 | $chart = substr( $filename, 0, 30 ); |
| 329 | 271 | $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 | - } | |
| 272 | + | |
| 340 | 273 | $vendor_file = VISUALIZER_ABSPATH . '/vendor/autoload.php'; |
| 341 | 274 | if ( is_readable( $vendor_file ) ) { |
| 342 | 275 | include_once( $vendor_file ); |
| 343 | 276 | } |
| 277 | + | |
| 344 | 278 | $xlsData = ''; |
| 345 | 279 | if ( class_exists( 'PhpOffice\PhpSpreadsheet\Spreadsheet' ) ) { |
| 346 | 280 | $doc = new PhpOffice\PhpSpreadsheet\Spreadsheet(); |
| 347 | 281 | $doc->getActiveSheet()->fromArray( $rows, null, 'A1' ); |
| @@ -418,22 +352,8 @@ | ||
| 418 | 352 | ); |
| 419 | 353 | } |
| 420 | 354 | |
| 421 | 355 | /** |
| 422 | - * Disable revisions temporarily for visualizer post type. | |
| 423 | - */ | |
| 424 | - protected final function disableRevisionsTemporarily() { | |
| 425 | - add_filter( | |
| 426 | - 'wp_revisions_to_keep', function( $num, $post ) { | |
| 427 | - if ( $post->post_type === Visualizer_Plugin::CPT_VISUALIZER ) { | |
| 428 | - return 0; | |
| 429 | - } | |
| 430 | - return $num; | |
| 431 | - }, 10, 2 | |
| 432 | - ); | |
| 433 | - } | |
| 434 | - | |
| 435 | - /** | |
| 436 | 356 | * Undo revisions for the chart, and if necessary, restore the earliest version. |
| 437 | 357 | * |
| 438 | 358 | * @return bool If any revisions were found. |
| 439 | 359 | */ |
| @@ -438,11 +358,9 @@ | ||
| 438 | 358 | * @return bool If any revisions were found. |
| 439 | 359 | */ |
| 440 | 360 | public final function undoRevisions( $chart_id, $restore = false ) { |
| 441 | 361 | do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'undoRevisions for %d with%s restore', $chart_id, ( $restore ? '' : 'out' ) ), 'debug', __FILE__, __LINE__ ); |
| 442 | - if ( get_post_type( $chart_id ) !== Visualizer_Plugin::CPT_VISUALIZER ) { | |
| 443 | - return false; | |
| 444 | - } | |
| 362 | + | |
| 445 | 363 | $revisions = wp_get_post_revisions( $chart_id, array( 'order' => 'ASC' ) ); |
| 446 | 364 | if ( count( $revisions ) > 1 ) { |
| 447 | 365 | $revision_ids = array_keys( $revisions ); |
| 448 | 366 | |
| @@ -448,9 +366,9 @@ | ||
| 448 | 366 | |
| 449 | 367 | do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'found %d revisions = %s', count( $revisions ), print_r( $revision_ids, true ) ), 'debug', __FILE__, __LINE__ ); |
| 450 | 368 | |
| 451 | 369 | // when we restore, a new revision is likely to be created. so, let's disable revisions for the time being. |
| 452 | - $this->disableRevisionsTemporarily(); | |
| 370 | + add_filter( 'wp_revisions_to_keep', '__return_false' ); | |
| 453 | 371 | |
| 454 | 372 | if ( $restore ) { |
| 455 | 373 | // restore to the oldest one i.e. the first one. |
| 456 | 374 | wp_restore_post_revision( array_shift( $revision_ids ) ); |
| @@ -469,13 +387,10 @@ | ||
| 469 | 387 | /** |
| 470 | 388 | * If existing revisions exist for the chart, restore the earliest version and then create a new revision to initiate editing. |
| 471 | 389 | */ |
| 472 | 390 | public final function handleExistingRevisions( $chart_id, $chart ) { |
| 391 | + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'handleExistingRevisions for %d', $chart_id ), 'debug', __FILE__, __LINE__ ); | |
| 473 | 392 | |
| 474 | - do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'handleExistingRevisions for %d', $chart_id ), 'debug', __FILE__, __LINE__ ); | |
| 475 | - if ( get_post_type( $chart_id ) !== Visualizer_Plugin::CPT_VISUALIZER ) { | |
| 476 | - return $chart_id; | |
| 477 | - } | |
| 478 | 393 | // undo revisions. |
| 479 | 394 | $revisions_found = $this->undoRevisions( $chart_id, true ); |
| 480 | 395 | |
| 481 | 396 | // create revision for the edit action. |
| @@ -523,16 +438,11 @@ | ||
| 523 | 438 | require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
| 524 | 439 | WP_Filesystem(); |
| 525 | 440 | global $wp_filesystem; |
| 526 | 441 | |
| 527 | - $multisite_arg = '/'; | |
| 528 | - if ( is_multisite() && ! is_main_site() ) { | |
| 529 | - $multisite_arg = '/sites/' . get_current_blog_id() . '/'; | |
| 530 | - } | |
| 442 | + $dir = $wp_filesystem->wp_content_dir() . 'uploads/visualizer'; | |
| 443 | + $file = $wp_filesystem->wp_content_dir() . 'uploads/visualizer/customization.js'; | |
| 531 | 444 | |
| 532 | - $dir = $wp_filesystem->wp_content_dir() . 'uploads' . $multisite_arg . 'visualizer'; | |
| 533 | - $file = $wp_filesystem->wp_content_dir() . 'uploads' . $multisite_arg . 'visualizer/customization.js'; | |
| 534 | - | |
| 535 | 445 | if ( $wp_filesystem->is_readable( $file ) ) { |
| 536 | 446 | return $specific; |
| 537 | 447 | } |
| 538 | 448 | |
| @@ -565,21 +475,18 @@ | ||
| 565 | 475 | /** |
| 566 | 476 | * Load the class for the given chart's chart type so that its assets can be loaded. |
| 567 | 477 | */ |
| 568 | 478 | protected function load_chart_type( $chart_id ) { |
| 569 | - $name = $this->load_chart_class_name( $chart_id ); | |
| 479 | + $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true ); | |
| 480 | + $name = 'Visualizer_Render_Sidebar_Type_' . ucwords( $type ); | |
| 570 | 481 | $class = null; |
| 571 | 482 | if ( class_exists( $name ) || true === apply_filters( 'visualizer_load_chart', false, $name ) ) { |
| 572 | - if ( 'Visualizer_Render_Sidebar_Type_DataTable_DataTable' === $name ) { | |
| 573 | - $name = 'Visualizer_Render_Sidebar_Type_DataTable_Tabular'; | |
| 574 | - } | |
| 575 | 483 | $class = new $name; |
| 576 | 484 | } |
| 577 | 485 | |
| 578 | - if ( is_null( $class ) && Visualizer_Module::is_pro() ) { | |
| 486 | + if ( is_null( $class ) && VISUALIZER_PRO ) { | |
| 579 | 487 | // lets see if this type exists in pro. New Lite(3.1.0+) & old Pro(1.8.0-). |
| 580 | - $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true ); | |
| 581 | - $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 ) ) ); | |
| 488 | + $class = apply_filters( 'visualizer_pro_chart_type_sidebar', null, array( 'type' => $type, 'settings' => get_post_meta( $chart_id, Visualizer_Plugin::CF_SETTINGS, true ) ) ); | |
| 582 | 489 | } |
| 583 | 490 | |
| 584 | 491 | return is_null( $class ) ? null : $class->getLibrary(); |
| 585 | 492 | } |
| @@ -584,26 +491,8 @@ | ||
| 584 | 491 | return is_null( $class ) ? null : $class->getLibrary(); |
| 585 | 492 | } |
| 586 | 493 | |
| 587 | 494 | /** |
| 588 | - * Returns the class name for the given chart's chart type. | |
| 589 | - */ | |
| 590 | - protected function load_chart_class_name( $chart_id ) { | |
| 591 | - $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true ); | |
| 592 | - $lib = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_LIBRARY, true ); | |
| 593 | - | |
| 594 | - // backward compatibility. | |
| 595 | - if ( empty( $lib ) ) { | |
| 596 | - $lib = 'GoogleCharts'; | |
| 597 | - if ( 'dataTable' === $type ) { | |
| 598 | - $lib = 'DataTable'; | |
| 599 | - } | |
| 600 | - } | |
| 601 | - $name = 'Visualizer_Render_Sidebar_Type_' . $lib . '_' . ucwords( $type ); | |
| 602 | - return $name; | |
| 603 | - } | |
| 604 | - | |
| 605 | - /** | |
| 606 | 495 | * Generates the inline CSS to apply to the chart and adds these classes to the settings. |
| 607 | 496 | * |
| 608 | 497 | * @access public |
| 609 | 498 | * @param int $id The id of the chart. |
| @@ -611,31 +500,32 @@ | ||
| 611 | 500 | */ |
| 612 | 501 | protected function get_inline_custom_css( $id, $settings ) { |
| 613 | 502 | $css = ''; |
| 614 | 503 | |
| 504 | + $arguments = array( '', $settings ); | |
| 505 | + if ( ! isset( $settings['customcss'] ) ) { | |
| 506 | + return $arguments; | |
| 507 | + } | |
| 508 | + | |
| 615 | 509 | $classes = array(); |
| 616 | 510 | $css = '<style type="text/css" name="visualizer-custom-css" id="customcss-' . $id . '">'; |
| 617 | - if ( ! empty( $settings['customcss'] ) ) { | |
| 618 | - foreach ( $settings['customcss'] as $name => $element ) { | |
| 619 | - $attributes = array(); | |
| 620 | - foreach ( $element as $property => $value ) { | |
| 621 | - $attributes[] = $this->handle_css_property( $property, $value ); | |
| 622 | - } | |
| 623 | - $class_name = $id . $name; | |
| 624 | - $properties = implode( ' !important; ', array_filter( $attributes ) ); | |
| 625 | - if ( ! empty( $properties ) ) { | |
| 626 | - $css .= '.' . $class_name . ' {' . $properties . ' !important;}'; | |
| 627 | - $classes[ $name ] = $class_name; | |
| 628 | - } | |
| 511 | + foreach ( $settings['customcss'] as $name => $element ) { | |
| 512 | + $attributes = array(); | |
| 513 | + foreach ( $element as $property => $value ) { | |
| 514 | + $attributes[] = $this->handle_css_property( $property, $value ); | |
| 629 | 515 | } |
| 630 | - $settings['cssClassNames'] = $classes; | |
| 516 | + $class_name = $id . $name; | |
| 517 | + $properties = implode( '; ', array_filter( $attributes ) ); | |
| 518 | + if ( ! empty( $properties ) ) { | |
| 519 | + $css .= '.' . $class_name . ' {' . $properties . ' !important;}'; | |
| 520 | + $classes[ $name ] = $class_name; | |
| 521 | + } | |
| 631 | 522 | } |
| 523 | + $css .= '</style>'; | |
| 632 | 524 | |
| 633 | - $img_path = VISUALIZER_ABSURL . 'images'; | |
| 634 | - $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;}"; | |
| 635 | - $css .= '</style>'; | |
| 525 | + $settings['cssClassNames'] = $classes; | |
| 636 | 526 | |
| 637 | - $arguments = array( $css, $settings ); | |
| 527 | + $arguments = array( $css, $settings ); | |
| 638 | 528 | apply_filters_ref_array( 'visualizer_inline_css', array( &$arguments ) ); |
| 639 | 529 | |
| 640 | 530 | return $arguments; |
| 641 | 531 | } |
| @@ -679,156 +569,5 @@ | ||
| 679 | 569 | $q = new WP_Query( $args ); |
| 680 | 570 | return $q->found_posts > 0; |
| 681 | 571 | } |
| 682 | 572 | |
| 683 | - /** | |
| 684 | - * Determines how many charts have been created. | |
| 685 | - */ | |
| 686 | - protected static function numberOfCharts() { | |
| 687 | - $args = array( | |
| 688 | - 'post_type' => Visualizer_Plugin::CPT_VISUALIZER, | |
| 689 | - 'fields' => 'ids', | |
| 690 | - 'post_status' => 'publish', | |
| 691 | - 'posts_per_page' => 300, | |
| 692 | - ); | |
| 693 | - | |
| 694 | - $q = new WP_Query( $args ); | |
| 695 | - return $q->found_posts; | |
| 696 | - } | |
| 697 | - | |
| 698 | - /** | |
| 699 | - * Checks if the PRO version is active. | |
| 700 | - * | |
| 701 | - * @since 3.3.0 | |
| 702 | - */ | |
| 703 | - public static function is_pro() { | |
| 704 | - // versions of pro before 1.9.0 will use the constant VISUALIZER_PRO | |
| 705 | - // versions of pro 1.9.0 onwards will use the filter | |
| 706 | - return apply_filters( 'visualizer_is_pro', VISUALIZER_PRO ); | |
| 707 | - } | |
| 708 | - | |
| 709 | - /** | |
| 710 | - * Checks if the PRO version is older than a particular version. | |
| 711 | - * | |
| 712 | - * @since 3.3.0 | |
| 713 | - */ | |
| 714 | - public static function is_pro_older_than( $version ) { | |
| 715 | - return version_compare( VISUALIZER_PRO_VERSION, $version, '<' ); | |
| 716 | - } | |
| 717 | - | |
| 718 | - /** | |
| 719 | - * Should we show some specific feature on the basis of the version? | |
| 720 | - * | |
| 721 | - * @since 3.4.0 | |
| 722 | - */ | |
| 723 | - public static function can_show_feature( $feature ) { | |
| 724 | - switch ( $feature ) { | |
| 725 | - case 'simple-editor': | |
| 726 | - // if user has pro but an older version, then don't load the simple editor functionality | |
| 727 | - // as the select box will not behave as expected because the pro editor's functionality will supercede. | |
| 728 | - return ! Visualizer_Module::is_pro() || ! Visualizer_Module::is_pro_older_than( '1.9.2' ); | |
| 729 | - } | |
| 730 | - return false; | |
| 731 | - } | |
| 732 | - | |
| 733 | - /** | |
| 734 | - * Gets the features for the provided license type. | |
| 735 | - */ | |
| 736 | - public static final function get_features_for_license( $plan ) { | |
| 737 | - switch ( $plan ) { | |
| 738 | - case 1: | |
| 739 | - return array( 'import-wp', 'db-query', 'import-wc-report' ); | |
| 740 | - case 2: | |
| 741 | - return array( 'schedule-chart', 'chart-permissions' ); | |
| 742 | - } | |
| 743 | - } | |
| 744 | - | |
| 745 | - /** | |
| 746 | - * Gets the chart content after common manipulations. | |
| 747 | - */ | |
| 748 | - public static function get_chart_data( $chart, $type, $run_filter = true ) { | |
| 749 | - // change HTML entities | |
| 750 | - $post_content = html_entity_decode( htmlentities( $chart->post_content ) ); | |
| 751 | - $post_content = preg_replace_callback( | |
| 752 | - '!s:(\d+):"(.*?)";!s', | |
| 753 | - function ( $matches ) { | |
| 754 | - if ( isset( $matches[2] ) ) { | |
| 755 | - return 's:' . strlen( $matches[2] ) . ':"' . $matches[2] . '";'; | |
| 756 | - } | |
| 757 | - }, | |
| 758 | - $post_content | |
| 759 | - ); | |
| 760 | - $data = unserialize( $post_content ); | |
| 761 | - $altered = array(); | |
| 762 | - if ( ! empty( $data ) ) { | |
| 763 | - foreach ( $data as $index => $array ) { | |
| 764 | - if ( ! is_array( $index ) && is_array( $array ) ) { | |
| 765 | - foreach ( $array as &$datum ) { | |
| 766 | - if ( is_string( $datum ) ) { | |
| 767 | - $datum = stripslashes( $datum ); | |
| 768 | - } | |
| 769 | - } | |
| 770 | - $altered[ $index ] = $array; | |
| 771 | - } | |
| 772 | - } | |
| 773 | - } | |
| 774 | - // if something goes wrong and the end result is empty, be safe and use the original data | |
| 775 | - if ( empty( $altered ) ) { | |
| 776 | - $altered = $data; | |
| 777 | - } | |
| 778 | - if ( $run_filter ) { | |
| 779 | - return apply_filters( Visualizer_Plugin::FILTER_GET_CHART_DATA, $altered, $chart->ID, $type ); | |
| 780 | - } | |
| 781 | - return $altered; | |
| 782 | - } | |
| 783 | - | |
| 784 | - /** | |
| 785 | - * Get chart image. | |
| 786 | - * | |
| 787 | - * @param object $chart Chart data. | |
| 788 | - * @return string | |
| 789 | - */ | |
| 790 | - public function _getImage( $chart = null ) { | |
| 791 | - $image = ''; | |
| 792 | - if ( $chart ) { | |
| 793 | - $chart_image = get_post_meta( $chart->ID, Visualizer_Plugin::CF_CHART_IMAGE, true ); | |
| 794 | - if ( ! empty( $chart_image ) ) { | |
| 795 | - $image = wp_get_attachment_image( $chart_image, 'full' ); | |
| 796 | - } | |
| 797 | - } | |
| 798 | - return array( | |
| 799 | - 'csv' => $image, | |
| 800 | - ); | |
| 801 | - } | |
| 802 | - | |
| 803 | - /** | |
| 804 | - * Filter chart title if visualizer post type. | |
| 805 | - * | |
| 806 | - * @param object $query WP Query object. | |
| 807 | - * @return void | |
| 808 | - */ | |
| 809 | - public function PreGetPosts( $query ) { | |
| 810 | - if ( ! $query->is_main_query() ) { | |
| 811 | - $post_type = $query->get( 'post_type' ); | |
| 812 | - if ( 'visualizer' === $post_type ) { | |
| 813 | - $this->_addFilter( Visualizer_Plugin::FILTER_CHART_TITLE, 'filterChartTitle', 10, 2 ); | |
| 814 | - } | |
| 815 | - } | |
| 816 | - } | |
| 817 | - | |
| 818 | - /** | |
| 819 | - * Filter chart title. | |
| 820 | - * | |
| 821 | - * @access public | |
| 822 | - * @param string $post_title Post title. | |
| 823 | - * @param int $post_id Post ID. | |
| 824 | - * @return string | |
| 825 | - */ | |
| 826 | - public function filterChartTitle( $post_title, $post_id ) { | |
| 827 | - $post_type = get_post_type( $post_id ); | |
| 828 | - $post_title = trim( $post_title ); | |
| 829 | - if ( 'visualizer' === $post_type && 'Visualization' === $post_title ) { | |
| 830 | - return sprintf( '%s #%d', $post_title, $post_id ); | |
| 831 | - } | |
| 832 | - return $post_title; | |
| 833 | - } | |
| 834 | 573 | } |