| @@ -62,11 +62,31 @@ | ||
| 62 | 62 | global $wpdb; |
| 63 | 63 | |
| 64 | 64 | $this->_wpdb = $wpdb; |
| 65 | 65 | $this->_plugin = $plugin; |
| 66 | + | |
| 67 | + $this->_addFilter( Visualizer_Plugin::FILTER_UNDO_REVISIONS, 'undoRevisions', 10, 2 ); | |
| 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 | + register_shutdown_function( array($this, 'onShutdown') ); | |
| 71 | + | |
| 66 | 72 | } |
| 67 | 73 | |
| 68 | 74 | /** |
| 75 | + * Register a shutdown hook to catch fatal errors. | |
| 76 | + * | |
| 77 | + * @since ? | |
| 78 | + * | |
| 79 | + * @access public | |
| 80 | + */ | |
| 81 | + public function onShutdown() { | |
| 82 | + $error = error_get_last(); | |
| 83 | + if ( $error && $error['type'] === E_ERROR && false !== strpos( $error['file'], 'Visualizer/' ) ) { | |
| 84 | + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'Critical error %s', print_r( $error, true ) ), 'error', __FILE__, __LINE__ ); | |
| 85 | + } | |
| 86 | + } | |
| 87 | + | |
| 88 | + /** | |
| 69 | 89 | * Registers an action hook. |
| 70 | 90 | * |
| 71 | 91 | * @since 1.0.0 |
| 72 | 92 | * @uses add_action() To register action hook. |
| @@ -143,8 +163,17 @@ | ||
| 143 | 163 | return $this; |
| 144 | 164 | } |
| 145 | 165 | |
| 146 | 166 | /** |
| 167 | + * A wrapper around the actual function _getDataAs. This function is invoked as a filter. | |
| 168 | + * | |
| 169 | + * @since 3.2.0 | |
| 170 | + */ | |
| 171 | + public function getDataAs( $final, $chart_id, $type ) { | |
| 172 | + return $this->_getDataAs( $chart_id, $type ); | |
| 173 | + } | |
| 174 | + | |
| 175 | + /** | |
| 147 | 176 | * Extracts the data for a chart and prepares it for the given type. |
| 148 | 177 | * |
| 149 | 178 | * @access public |
| 150 | 179 | * @param int $chart_id The chart id. |
| @@ -154,15 +183,15 @@ | ||
| 154 | 183 | $final = null; |
| 155 | 184 | $success = false; |
| 156 | 185 | if ( $chart_id ) { |
| 157 | 186 | $chart = get_post( $chart_id ); |
| 158 | - $success = $chart && $chart->post_type == Visualizer_Plugin::CPT_VISUALIZER; | |
| 187 | + $success = $chart && $chart->post_type === Visualizer_Plugin::CPT_VISUALIZER; | |
| 159 | 188 | } |
| 160 | 189 | if ( $success ) { |
| 161 | 190 | $settings = get_post_meta( $chart_id, Visualizer_Plugin::CF_SETTINGS, true ); |
| 162 | 191 | $rows = array(); |
| 163 | 192 | $series = get_post_meta( $chart_id, Visualizer_Plugin::CF_SERIES, true ); |
| 164 | - $data = unserialize( $chart->post_content ); | |
| 193 | + $data = self::get_chart_data( $chart, $type, false ); | |
| 165 | 194 | if ( ! empty( $series ) ) { |
| 166 | 195 | $row = array(); |
| 167 | 196 | foreach ( $series as $array ) { |
| 168 | 197 | $row[] = $array['label']; |
| @@ -191,14 +220,29 @@ | ||
| 191 | 220 | } |
| 192 | 221 | } |
| 193 | 222 | } |
| 194 | 223 | |
| 195 | - $filename = isset( $settings['title'] ) && ! empty( $settings['title'] ) ? $settings['title'] : 'visualizer#' . $chart_id; | |
| 224 | + $title = 'visualizer#' . $chart_id; | |
| 225 | + if ( ! empty( $settings['title'] ) ) { | |
| 226 | + $title = $settings['title']; | |
| 227 | + } | |
| 228 | + // for ChartJS, title is an array. | |
| 229 | + if ( is_array( $title ) && isset( $title['text'] ) ) { | |
| 230 | + $title = $title['text']; | |
| 231 | + } | |
| 232 | + if ( empty( $title ) ) { | |
| 233 | + $title = 'visualizer#' . $chart_id; | |
| 234 | + } | |
| 196 | 235 | |
| 236 | + $filename = $title; | |
| 237 | + | |
| 197 | 238 | switch ( $type ) { |
| 198 | 239 | case 'csv': |
| 199 | - $final = $this->_getCSV( $rows, $filename ); | |
| 240 | + $final = $this->_getCSV( $rows, $filename, false ); | |
| 200 | 241 | break; |
| 242 | + case 'csv-display': | |
| 243 | + $final = $this->_getCSV( $rows, $filename, true ); | |
| 244 | + break; | |
| 201 | 245 | case 'xls': |
| 202 | 246 | $final = $this->_getExcel( $rows, $filename ); |
| 203 | 247 | break; |
| 204 | 248 | case 'print': |
| @@ -203,8 +247,11 @@ | ||
| 203 | 247 | break; |
| 204 | 248 | case 'print': |
| 205 | 249 | $final = $this->_getHTML( $rows ); |
| 206 | 250 | break; |
| 251 | + case 'image': | |
| 252 | + $final = $this->_getImage( $chart ); | |
| 253 | + break; | |
| 207 | 254 | } |
| 208 | 255 | } |
| 209 | 256 | return $final; |
| 210 | 257 | } |
| @@ -214,24 +261,43 @@ | ||
| 214 | 261 | * |
| 215 | 262 | * @access private |
| 216 | 263 | * @param array $rows The array of data. |
| 217 | 264 | * @param string $filename The name of the file to use. |
| 265 | + * @param bool $enclose Enclose strings that have commas in them in double quotes. | |
| 218 | 266 | */ |
| 219 | - private function _getCSV( $rows, $filename ) { | |
| 267 | + private function _getCSV( $rows, $filename, $enclose ) { | |
| 220 | 268 | $filename .= '.csv'; |
| 221 | 269 | |
| 270 | + $bom = chr( 0xEF ) . chr( 0xBB ) . chr( 0xBF ); | |
| 222 | 271 | $fp = tmpfile(); |
| 272 | + if ( ! apply_filters( 'vizualizer_export_include_series_type', true ) ) { | |
| 273 | + unset( $rows[1] ); | |
| 274 | + $rows = array_values( $rows ); | |
| 275 | + } | |
| 223 | 276 | // support for MS Excel |
| 224 | - fprintf( $fp, $bom = ( chr( 0xEF ) . chr( 0xBB ) . chr( 0xBF ) ) ); | |
| 277 | + fprintf( $fp, $bom ); | |
| 225 | 278 | foreach ( $rows as $row ) { |
| 226 | 279 | fputcsv( $fp, $row ); |
| 227 | 280 | } |
| 228 | 281 | rewind( $fp ); |
| 229 | 282 | $csv = ''; |
| 283 | + // phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.FoundInWhileCondition | |
| 230 | 284 | while ( ( $array = fgetcsv( $fp ) ) !== false ) { |
| 231 | 285 | if ( strlen( $csv ) > 0 ) { |
| 232 | 286 | $csv .= PHP_EOL; |
| 233 | 287 | } |
| 288 | + // if enclosure is required, check every item of this line | |
| 289 | + // if a comma exists in the item, add enclosure. | |
| 290 | + if ( $enclose ) { | |
| 291 | + $temp_array = array(); | |
| 292 | + foreach ( $array as $item ) { | |
| 293 | + if ( strpos( $item, ',' ) !== false ) { | |
| 294 | + $item = VISUALIZER_CSV_ENCLOSURE . $item . VISUALIZER_CSV_ENCLOSURE; | |
| 295 | + } | |
| 296 | + $temp_array[] = $item; | |
| 297 | + } | |
| 298 | + $array = $temp_array; | |
| 299 | + } | |
| 234 | 300 | $csv .= implode( ',', $array ); |
| 235 | 301 | } |
| 236 | 302 | fclose( $fp ); |
| 237 | 303 | |
| @@ -237,8 +303,9 @@ | ||
| 237 | 303 | |
| 238 | 304 | return array( |
| 239 | 305 | 'csv' => $csv, |
| 240 | 306 | 'name' => $filename, |
| 307 | + 'string' => str_replace( $bom, '', $csv ), | |
| 241 | 308 | ); |
| 242 | 309 | } |
| 243 | 310 | |
| 244 | 311 | /** |
| @@ -248,30 +315,44 @@ | ||
| 248 | 315 | * @param array $rows The array of data. |
| 249 | 316 | * @param string $filename The name of the file to use. |
| 250 | 317 | */ |
| 251 | 318 | private function _getExcel( $rows, $filename ) { |
| 252 | - // PHPExcel does not like sheet names longer than 31 characters. | |
| 319 | + // PHPExcel did not like sheet names longer than 31 characters and we will assume the same with PhpSpreadsheet | |
| 253 | 320 | $chart = substr( $filename, 0, 30 ); |
| 254 | 321 | $filename .= '.xlsx'; |
| 255 | - | |
| 322 | + if ( ! apply_filters( 'vizualizer_export_include_series_type', true ) ) { | |
| 323 | + unset( $rows[1] ); | |
| 324 | + $rows = array_values( $rows ); | |
| 325 | + $rows = array_map( | |
| 326 | + function( $r ) { | |
| 327 | + return array_map( 'strval', $r ); | |
| 328 | + }, | |
| 329 | + $rows | |
| 330 | + ); | |
| 331 | + } | |
| 332 | + $vendor_file = VISUALIZER_ABSPATH . '/vendor/autoload.php'; | |
| 333 | + if ( is_readable( $vendor_file ) ) { | |
| 334 | + include_once( $vendor_file ); | |
| 335 | + } | |
| 256 | 336 | $xlsData = ''; |
| 257 | - if ( class_exists( 'PHPExcel' ) ) { | |
| 258 | - $doc = new PHPExcel(); | |
| 337 | + if ( class_exists( 'PhpOffice\PhpSpreadsheet\Spreadsheet' ) ) { | |
| 338 | + $doc = new PhpOffice\PhpSpreadsheet\Spreadsheet(); | |
| 259 | 339 | $doc->getActiveSheet()->fromArray( $rows, null, 'A1' ); |
| 260 | - $doc->getActiveSheet()->setTitle( $chart ); | |
| 340 | + $doc->getActiveSheet()->setTitle( sanitize_title( $chart ) ); | |
| 261 | 341 | $doc = apply_filters( 'visualizer_excel_doc', $doc ); |
| 262 | - $writer = PHPExcel_IOFactory::createWriter( $doc, 'Excel2007' ); | |
| 342 | + $writer = PhpOffice\PhpSpreadsheet\IOFactory::createWriter( $doc, 'Xlsx' ); | |
| 263 | 343 | ob_start(); |
| 264 | 344 | $writer->save( 'php://output' ); |
| 265 | 345 | $xlsData = ob_get_contents(); |
| 266 | 346 | ob_end_clean(); |
| 267 | 347 | } else { |
| 268 | - do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, 'Class PHPExcel does not exist!', 'error', __FILE__, __LINE__ ); | |
| 269 | - error_log( 'Class PHPExcel does not exist!' ); | |
| 348 | + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, 'Class PhpOffice\PhpSpreadsheet\Spreadsheet does not exist!', 'error', __FILE__, __LINE__ ); | |
| 349 | + error_log( 'Class PhpOffice\PhpSpreadsheet\Spreadsheet does not exist!' ); | |
| 270 | 350 | } |
| 271 | 351 | return array( |
| 272 | 352 | 'csv' => 'data:application/vnd.ms-excel;base64,' . base64_encode( $xlsData ), |
| 273 | 353 | 'name' => $filename, |
| 354 | + 'raw' => base64_encode( $xlsData ), | |
| 274 | 355 | ); |
| 275 | 356 | } |
| 276 | 357 | |
| 277 | 358 | /** |
| @@ -301,8 +382,14 @@ | ||
| 301 | 382 | |
| 302 | 383 | $table = '<table class="visualizer-print">'; |
| 303 | 384 | $index = 0; |
| 304 | 385 | foreach ( $rows as $row ) { |
| 386 | + // skip the data type row. | |
| 387 | + if ( 1 === $index ) { | |
| 388 | + $index++; | |
| 389 | + continue; | |
| 390 | + } | |
| 391 | + | |
| 305 | 392 | $table .= '<tr>'; |
| 306 | 393 | foreach ( $row as $col ) { |
| 307 | 394 | if ( $index === 0 ) { |
| 308 | 395 | $table .= '<th>' . $col . '</th>'; |
| @@ -322,5 +409,386 @@ | ||
| 322 | 409 | 'csv' => $html, |
| 323 | 410 | ); |
| 324 | 411 | } |
| 325 | 412 | |
| 413 | + /** | |
| 414 | + * Disable revisions temporarily for visualizer post type. | |
| 415 | + */ | |
| 416 | + protected final function disableRevisionsTemporarily() { | |
| 417 | + add_filter( | |
| 418 | + 'wp_revisions_to_keep', function( $num, $post ) { | |
| 419 | + if ( $post->post_type === Visualizer_Plugin::CPT_VISUALIZER ) { | |
| 420 | + return 0; | |
| 421 | + } | |
| 422 | + return $num; | |
| 423 | + }, 10, 2 | |
| 424 | + ); | |
| 425 | + } | |
| 426 | + | |
| 427 | + /** | |
| 428 | + * Undo revisions for the chart, and if necessary, restore the earliest version. | |
| 429 | + * | |
| 430 | + * @return bool If any revisions were found. | |
| 431 | + */ | |
| 432 | + public final function undoRevisions( $chart_id, $restore = false ) { | |
| 433 | + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'undoRevisions for %d with%s restore', $chart_id, ( $restore ? '' : 'out' ) ), 'debug', __FILE__, __LINE__ ); | |
| 434 | + if ( get_post_type( $chart_id ) !== Visualizer_Plugin::CPT_VISUALIZER ) { | |
| 435 | + return false; | |
| 436 | + } | |
| 437 | + $revisions = wp_get_post_revisions( $chart_id, array( 'order' => 'ASC' ) ); | |
| 438 | + if ( count( $revisions ) > 1 ) { | |
| 439 | + $revision_ids = array_keys( $revisions ); | |
| 440 | + | |
| 441 | + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'found %d revisions = %s', count( $revisions ), print_r( $revision_ids, true ) ), 'debug', __FILE__, __LINE__ ); | |
| 442 | + | |
| 443 | + // when we restore, a new revision is likely to be created. so, let's disable revisions for the time being. | |
| 444 | + $this->disableRevisionsTemporarily(); | |
| 445 | + | |
| 446 | + if ( $restore ) { | |
| 447 | + // restore to the oldest one i.e. the first one. | |
| 448 | + wp_restore_post_revision( array_shift( $revision_ids ) ); | |
| 449 | + } | |
| 450 | + | |
| 451 | + // delete all revisions. | |
| 452 | + foreach ( $revision_ids as $id ) { | |
| 453 | + wp_delete_post_revision( $id ); | |
| 454 | + } | |
| 455 | + | |
| 456 | + return true; | |
| 457 | + } | |
| 458 | + return false; | |
| 459 | + } | |
| 460 | + | |
| 461 | + /** | |
| 462 | + * If existing revisions exist for the chart, restore the earliest version and then create a new revision to initiate editing. | |
| 463 | + */ | |
| 464 | + public final function handleExistingRevisions( $chart_id, $chart ) { | |
| 465 | + | |
| 466 | + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'handleExistingRevisions for %d', $chart_id ), 'debug', __FILE__, __LINE__ ); | |
| 467 | + if ( get_post_type( $chart_id ) !== Visualizer_Plugin::CPT_VISUALIZER ) { | |
| 468 | + return $chart_id; | |
| 469 | + } | |
| 470 | + // undo revisions. | |
| 471 | + $revisions_found = $this->undoRevisions( $chart_id, true ); | |
| 472 | + | |
| 473 | + // create revision for the edit action. | |
| 474 | + wp_save_post_revision( $chart_id ); | |
| 475 | + | |
| 476 | + if ( $revisions_found ) { | |
| 477 | + // fetch chart data again in case it was updated by an earlier revision. | |
| 478 | + $chart = get_post( $chart_id ); | |
| 479 | + } | |
| 480 | + return $chart; | |
| 481 | + } | |
| 482 | + | |
| 483 | + /** | |
| 484 | + * Returns the language of the locale. | |
| 485 | + * | |
| 486 | + * @access protected | |
| 487 | + */ | |
| 488 | + protected function get_language() { | |
| 489 | + $locale = get_locale(); | |
| 490 | + if ( empty( $locale ) ) { | |
| 491 | + return ''; | |
| 492 | + } | |
| 493 | + $array = explode( '_', $locale ); | |
| 494 | + if ( count( $array ) < 2 ) { | |
| 495 | + return ''; | |
| 496 | + } | |
| 497 | + return reset( $array ); | |
| 498 | + } | |
| 499 | + | |
| 500 | + /** | |
| 501 | + * Gets/creates the JS where user-specific customizations can be/have been added. | |
| 502 | + */ | |
| 503 | + protected function get_user_customization_js() { | |
| 504 | + // use this as the JS file in case we are not able to create the file in uploads. | |
| 505 | + $default = VISUALIZER_ABSURL . 'js/customization.js'; | |
| 506 | + | |
| 507 | + $uploads = wp_get_upload_dir(); | |
| 508 | + $specific = $uploads['baseurl'] . '/visualizer/customization.js'; | |
| 509 | + | |
| 510 | + // for testing on user sites (before we send them the correctly customized file). | |
| 511 | + if ( VISUALIZER_TEST_JS_CUSTOMIZATION ) { | |
| 512 | + return $default; | |
| 513 | + } | |
| 514 | + | |
| 515 | + require_once( ABSPATH . 'wp-admin/includes/file.php' ); | |
| 516 | + WP_Filesystem(); | |
| 517 | + global $wp_filesystem; | |
| 518 | + | |
| 519 | + $multisite_arg = '/'; | |
| 520 | + if ( is_multisite() && ! is_main_site() ) { | |
| 521 | + $multisite_arg = '/sites/' . get_current_blog_id() . '/'; | |
| 522 | + } | |
| 523 | + | |
| 524 | + $dir = $wp_filesystem->wp_content_dir() . 'uploads' . $multisite_arg . 'visualizer'; | |
| 525 | + $file = $wp_filesystem->wp_content_dir() . 'uploads' . $multisite_arg . 'visualizer/customization.js'; | |
| 526 | + | |
| 527 | + if ( $wp_filesystem->is_readable( $file ) ) { | |
| 528 | + return $specific; | |
| 529 | + } | |
| 530 | + | |
| 531 | + if ( $wp_filesystem->exists( $file ) && ! $wp_filesystem->is_readable( $file ) ) { | |
| 532 | + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'Unable to read file %s', $file ), 'error', __FILE__, __LINE__ ); | |
| 533 | + return $default; | |
| 534 | + } | |
| 535 | + | |
| 536 | + if ( ! $wp_filesystem->exists( $dir ) ) { | |
| 537 | + // phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.Found | |
| 538 | + if ( ( $done = $wp_filesystem->mkdir( $dir ) ) === false ) { | |
| 539 | + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'Unable to create directory %s', $dir ), 'error', __FILE__, __LINE__ ); | |
| 540 | + return $default; | |
| 541 | + } | |
| 542 | + } | |
| 543 | + | |
| 544 | + // if file does not exist, copy. | |
| 545 | + if ( ! $wp_filesystem->exists( $file ) ) { | |
| 546 | + $src = str_replace( ABSPATH, $wp_filesystem->abspath(), VISUALIZER_ABSPATH . '/js/customization.js' ); | |
| 547 | + // phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.Found | |
| 548 | + if ( ( $done = $wp_filesystem->copy( $src, $file ) ) === false ) { | |
| 549 | + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'Unable to copy file %s to %s', $src, $file ), 'error', __FILE__, __LINE__ ); | |
| 550 | + return $default; | |
| 551 | + } | |
| 552 | + } | |
| 553 | + | |
| 554 | + return $specific; | |
| 555 | + } | |
| 556 | + | |
| 557 | + /** | |
| 558 | + * Load the class for the given chart's chart type so that its assets can be loaded. | |
| 559 | + */ | |
| 560 | + protected function load_chart_type( $chart_id ) { | |
| 561 | + $name = $this->load_chart_class_name( $chart_id ); | |
| 562 | + $class = null; | |
| 563 | + if ( class_exists( $name ) || true === apply_filters( 'visualizer_load_chart', false, $name ) ) { | |
| 564 | + if ( 'Visualizer_Render_Sidebar_Type_DataTable_DataTable' === $name ) { | |
| 565 | + $name = 'Visualizer_Render_Sidebar_Type_DataTable_Tabular'; | |
| 566 | + } | |
| 567 | + $class = new $name; | |
| 568 | + } | |
| 569 | + | |
| 570 | + if ( is_null( $class ) && Visualizer_Module::is_pro() ) { | |
| 571 | + // lets see if this type exists in pro. New Lite(3.1.0+) & old Pro(1.8.0-). | |
| 572 | + $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true ); | |
| 573 | + $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 ) ) ); | |
| 574 | + } | |
| 575 | + | |
| 576 | + return is_null( $class ) ? null : $class->getLibrary(); | |
| 577 | + } | |
| 578 | + | |
| 579 | + /** | |
| 580 | + * Returns the class name for the given chart's chart type. | |
| 581 | + */ | |
| 582 | + protected function load_chart_class_name( $chart_id ) { | |
| 583 | + $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true ); | |
| 584 | + $lib = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_LIBRARY, true ); | |
| 585 | + | |
| 586 | + // backward compatibility. | |
| 587 | + if ( empty( $lib ) ) { | |
| 588 | + $lib = 'GoogleCharts'; | |
| 589 | + if ( 'dataTable' === $type ) { | |
| 590 | + $lib = 'DataTable'; | |
| 591 | + } | |
| 592 | + } | |
| 593 | + $name = 'Visualizer_Render_Sidebar_Type_' . $lib . '_' . ucwords( $type ); | |
| 594 | + return $name; | |
| 595 | + } | |
| 596 | + | |
| 597 | + /** | |
| 598 | + * Generates the inline CSS to apply to the chart and adds these classes to the settings. | |
| 599 | + * | |
| 600 | + * @access public | |
| 601 | + * @param int $id The id of the chart. | |
| 602 | + * @param array $settings The settings of the chart. | |
| 603 | + */ | |
| 604 | + protected function get_inline_custom_css( $id, $settings ) { | |
| 605 | + $css = ''; | |
| 606 | + | |
| 607 | + $classes = array(); | |
| 608 | + $css = '<style type="text/css" name="visualizer-custom-css" id="customcss-' . $id . '">'; | |
| 609 | + if ( ! empty( $settings['customcss'] ) ) { | |
| 610 | + foreach ( $settings['customcss'] as $name => $element ) { | |
| 611 | + $attributes = array(); | |
| 612 | + foreach ( $element as $property => $value ) { | |
| 613 | + $attributes[] = $this->handle_css_property( $property, $value ); | |
| 614 | + } | |
| 615 | + $class_name = $id . $name; | |
| 616 | + $properties = implode( ' !important; ', array_filter( $attributes ) ); | |
| 617 | + if ( ! empty( $properties ) ) { | |
| 618 | + $css .= '.' . $class_name . ' {' . $properties . ' !important;}'; | |
| 619 | + $classes[ $name ] = $class_name; | |
| 620 | + } | |
| 621 | + } | |
| 622 | + $settings['cssClassNames'] = $classes; | |
| 623 | + } | |
| 624 | + | |
| 625 | + $img_path = VISUALIZER_ABSURL . 'images'; | |
| 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;}"; | |
| 627 | + $css .= '</style>'; | |
| 628 | + | |
| 629 | + $arguments = array( $css, $settings ); | |
| 630 | + apply_filters_ref_array( 'visualizer_inline_css', array( &$arguments ) ); | |
| 631 | + | |
| 632 | + return $arguments; | |
| 633 | + } | |
| 634 | + | |
| 635 | + /** | |
| 636 | + * Handles CSS properties that might need special syntax. | |
| 637 | + * | |
| 638 | + * @access private | |
| 639 | + * @param string $property The name of the css property. | |
| 640 | + * @param string $value The value of the css property. | |
| 641 | + */ | |
| 642 | + private function handle_css_property( $property, $value ) { | |
| 643 | + if ( empty( $property ) || empty( $value ) ) { | |
| 644 | + return ''; | |
| 645 | + } | |
| 646 | + | |
| 647 | + switch ( $property ) { | |
| 648 | + case 'transform': | |
| 649 | + $value = 'rotate(' . $value . 'deg)'; | |
| 650 | + break; | |
| 651 | + } | |
| 652 | + return $property . ': ' . $value; | |
| 653 | + } | |
| 654 | + | |
| 655 | + /** | |
| 656 | + * Determines if charts have been created of the particular chart type. | |
| 657 | + */ | |
| 658 | + protected static function hasChartType( $type ) { | |
| 659 | + $args = array( | |
| 660 | + 'post_type' => Visualizer_Plugin::CPT_VISUALIZER, | |
| 661 | + 'fields' => 'ids', | |
| 662 | + 'post_status' => 'publish', | |
| 663 | + 'meta_query' => array( | |
| 664 | + array( | |
| 665 | + 'key' => Visualizer_Plugin::CF_CHART_TYPE, | |
| 666 | + 'value' => $type, | |
| 667 | + ), | |
| 668 | + ), | |
| 669 | + ); | |
| 670 | + | |
| 671 | + $q = new WP_Query( $args ); | |
| 672 | + return $q->found_posts > 0; | |
| 673 | + } | |
| 674 | + | |
| 675 | + /** | |
| 676 | + * Determines how many charts have been created. | |
| 677 | + */ | |
| 678 | + protected static function numberOfCharts() { | |
| 679 | + $args = array( | |
| 680 | + 'post_type' => Visualizer_Plugin::CPT_VISUALIZER, | |
| 681 | + 'fields' => 'ids', | |
| 682 | + 'post_status' => 'publish', | |
| 683 | + 'posts_per_page' => 300, | |
| 684 | + ); | |
| 685 | + | |
| 686 | + $q = new WP_Query( $args ); | |
| 687 | + return $q->found_posts; | |
| 688 | + } | |
| 689 | + | |
| 690 | + /** | |
| 691 | + * Checks if the PRO version is active. | |
| 692 | + * | |
| 693 | + * @since 3.3.0 | |
| 694 | + */ | |
| 695 | + public static function is_pro() { | |
| 696 | + // versions of pro before 1.9.0 will use the constant VISUALIZER_PRO | |
| 697 | + // versions of pro 1.9.0 onwards will use the filter | |
| 698 | + return apply_filters( 'visualizer_is_pro', VISUALIZER_PRO ); | |
| 699 | + } | |
| 700 | + | |
| 701 | + /** | |
| 702 | + * Checks if the PRO version is older than a particular version. | |
| 703 | + * | |
| 704 | + * @since 3.3.0 | |
| 705 | + */ | |
| 706 | + public static function is_pro_older_than( $version ) { | |
| 707 | + return version_compare( VISUALIZER_PRO_VERSION, $version, '<' ); | |
| 708 | + } | |
| 709 | + | |
| 710 | + /** | |
| 711 | + * Should we show some specific feature on the basis of the version? | |
| 712 | + * | |
| 713 | + * @since 3.4.0 | |
| 714 | + */ | |
| 715 | + public static function can_show_feature( $feature ) { | |
| 716 | + switch ( $feature ) { | |
| 717 | + case 'simple-editor': | |
| 718 | + // if user has pro but an older version, then don't load the simple editor functionality | |
| 719 | + // as the select box will not behave as expected because the pro editor's functionality will supercede. | |
| 720 | + return ! Visualizer_Module::is_pro() || ! Visualizer_Module::is_pro_older_than( '1.9.2' ); | |
| 721 | + } | |
| 722 | + return false; | |
| 723 | + } | |
| 724 | + | |
| 725 | + /** | |
| 726 | + * Gets the features for the provided license type. | |
| 727 | + */ | |
| 728 | + public static final function get_features_for_license( $plan ) { | |
| 729 | + switch ( $plan ) { | |
| 730 | + case 1: | |
| 731 | + return array( 'import-wp', 'db-query' ); | |
| 732 | + case 2: | |
| 733 | + return array( 'schedule-chart', 'chart-permissions' ); | |
| 734 | + } | |
| 735 | + } | |
| 736 | + | |
| 737 | + /** | |
| 738 | + * Gets the chart content after common manipulations. | |
| 739 | + */ | |
| 740 | + public static function get_chart_data( $chart, $type, $run_filter = true ) { | |
| 741 | + // change HTML entities | |
| 742 | + $post_content = html_entity_decode( htmlentities( $chart->post_content ) ); | |
| 743 | + $post_content = preg_replace_callback( | |
| 744 | + '!s:(\d+):"(.*?)";!s', | |
| 745 | + function ( $matches ) { | |
| 746 | + if ( isset( $matches[2] ) ) { | |
| 747 | + return 's:' . strlen( $matches[2] ) . ':"' . $matches[2] . '";'; | |
| 748 | + } | |
| 749 | + }, | |
| 750 | + $post_content | |
| 751 | + ); | |
| 752 | + $data = unserialize( $post_content ); | |
| 753 | + $altered = array(); | |
| 754 | + if ( ! empty( $data ) ) { | |
| 755 | + foreach ( $data as $index => $array ) { | |
| 756 | + if ( ! is_array( $index ) && is_array( $array ) ) { | |
| 757 | + foreach ( $array as &$datum ) { | |
| 758 | + if ( is_string( $datum ) ) { | |
| 759 | + $datum = stripslashes( $datum ); | |
| 760 | + } | |
| 761 | + } | |
| 762 | + $altered[ $index ] = $array; | |
| 763 | + } | |
| 764 | + } | |
| 765 | + } | |
| 766 | + // if something goes wrong and the end result is empty, be safe and use the original data | |
| 767 | + if ( empty( $altered ) ) { | |
| 768 | + $altered = $data; | |
| 769 | + } | |
| 770 | + if ( $run_filter ) { | |
| 771 | + return apply_filters( Visualizer_Plugin::FILTER_GET_CHART_DATA, $altered, $chart->ID, $type ); | |
| 772 | + } | |
| 773 | + return $altered; | |
| 774 | + } | |
| 775 | + | |
| 776 | + /** | |
| 777 | + * Get chart image. | |
| 778 | + * | |
| 779 | + * @param object $chart Chart data. | |
| 780 | + * @return string | |
| 781 | + */ | |
| 782 | + public function _getImage( $chart = null ) { | |
| 783 | + $image = ''; | |
| 784 | + if ( $chart ) { | |
| 785 | + $chart_image = get_post_meta( $chart->ID, Visualizer_Plugin::CF_CHART_IMAGE, true ); | |
| 786 | + if ( ! empty( $chart_image ) ) { | |
| 787 | + $image = wp_get_attachment_image( $chart_image, 'full' ); | |
| 788 | + } | |
| 789 | + } | |
| 790 | + return array( | |
| 791 | + 'csv' => $image, | |
| 792 | + ); | |
| 793 | + } | |
| 326 | 794 | } |