PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 1.4.1
Visualizer – Tables & Charts Manager with Built-in AI Generator v1.4.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 | index.php +13 -1 1.41.4.1 View file →
@@ -2,9 +2,9 @@
2 2 /*
3 3 Plugin Name: WordPress Visualizer
4 4 Plugin URI: https://github.com/madpixelslabs/visualizer
5 5 Description: A simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages. The plugin uses Google Visualization API to render charts, which supports cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases.
6 -Version: 1.4
6 +Version: 1.4.1
7 7 Author: Madpixels
8 8 Author URI: http://madpixels.net
9 9 License: GPL v2.0 or later
10 10 License URI: http://www.opensource.org/licenses/gpl-license.php
@@ -68,8 +68,20 @@
68 68 // setup environment
69 69 define( 'VISUALIZER_BASEFILE', __FILE__ );
70 70 define( 'VISUALIZER_ABSURL', plugins_url( '/', __FILE__ ) );
71 71 define( 'VISUALIZER_ABSPATH', dirname( __FILE__ ) );
72 +
73 + if ( !defined( 'VISUALIZER_CSV_DELIMITER' ) ) {
74 + define( 'VISUALIZER_CSV_DELIMITER', ',' );
75 + }
76 +
77 + if ( !defined( 'VISUALIZER_CSV_ENCLOSURE' ) ) {
78 + define( 'VISUALIZER_CSV_ENCLOSURE', '"' );
79 + }
80 +
81 + if ( !defined( 'VISUALIZER_CSV_ESCAPRE' ) ) {
82 + define( 'VISUALIZER_CSV_ESCAPRE', '\\' );
83 + }
72 84
73 85 // don't load the plugin if cron job is running or doing autosave
74 86 $doing_autosave = defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE;
75 87 $doing_cron = defined( 'DOING_CRON' ) && DOING_CRON;