PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.1.0
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.1.0
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 3.10.4 All 148 releases
visualizer / index.php

index.php in Visualizer – Tables & Charts Manager with Built-in AI Generator 3.1.0, at index.php

145 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /*
4 Plugin Name: Visualizer: Tables and Charts Manager for WordPress (Lite)
5 Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
6 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.
7 Version: 3.1.0
8 Author: Themeisle
9 Author URI: http://themeisle.com
10 License: GPL v2.0 or later
11 WordPress Available: yes
12 Requires License: no
13 Pro Slug: visualizer-pro
14 License URI: http://www.opensource.org/licenses/gpl-license.php
15 */
16
17 // Prevent direct access to the plugin folder.
18 if ( ! defined( 'ABSPATH' ) ) {
19 header( 'HTTP/1.0 404 Not Found', true, 404 );
20 exit;
21 }
22 // don't load the plugin, if it has been already loaded
23 if ( class_exists( 'Visualizer_Plugin', false ) ) {
24 return;
25 }
26 if ( class_exists( 'Visualizer_Pro', false ) ) {
27 define( 'VISUALIZER_PRO', true );
28 } else {
29 defined( 'VISUALIZER_PRO' ) || define( 'VISUALIZER_PRO', false );
30 }
31
32 /**
33 * Automatically loads classes for the plugin. Checks a namespace and loads only
34 * approved classes.
35 *
36 * @since 1.0.0
37 *
38 * @param string $class The class name to autoload.
39 *
40 * @return boolean Returns TRUE if the class is located. Otherwise FALSE.
41 */
42 function visualizer_autoloader( $class ) {
43 $namespaces = array( 'Visualizer' );
44 foreach ( $namespaces as $namespace ) {
45 if ( substr( $class, 0, strlen( $namespace ) ) == $namespace ) {
46 $filename = dirname( __FILE__ ) . str_replace( '_', DIRECTORY_SEPARATOR, "_classes_{$class}.php" );
47 if ( is_readable( $filename ) ) {
48 require $filename;
49
50 return true;
51 }
52 }
53 }
54
55 return false;
56 }
57
58 /**
59 * Instantiates the plugin and setup all modules.
60 *
61 * @since 1.0.0
62 */
63 function visualizer_launch() {
64 // setup environment
65 define( 'VISUALIZER_BASEFILE', __FILE__ );
66 define( 'VISUALIZER_ABSURL', plugins_url( '/', __FILE__ ) );
67 define( 'VISUALIZER_ABSPATH', dirname( __FILE__ ) );
68 define( 'VISUALIZER_REST_VERSION', 1 );
69 // if the below is true, then the js/customization.js in the plugin folder will be used instead of the one in the uploads folder (if it exists).
70 define( 'VISUALIZER_TEST_JS_CUSTOMIZATION', false );
71
72 if ( ! defined( 'VISUALIZER_CSV_DELIMITER' ) ) {
73 define( 'VISUALIZER_CSV_DELIMITER', ',' );
74 }
75 if ( ! defined( 'VISUALIZER_CSV_ENCLOSURE' ) ) {
76 define( 'VISUALIZER_CSV_ENCLOSURE', '"' );
77 }
78 if ( ! defined( 'VISUALIZER_DEBUG' ) ) {
79 define( 'VISUALIZER_DEBUG', false );
80 }
81
82 define( 'VISUALIZER_SKIP_CHART_TYPE_PAGE', true );
83
84 // if x and y features are required, this value should read x,y or x|y or x;y.
85 define( 'VISUALIZER_ENABLE_BETA_FEATURES', '' );
86
87 // the link to pre-build queries.
88 define( 'VISUALIZER_DB_QUERY_DOC_URL', 'https://docs.themeisle.com/article/970-visualizer-sample-queries-to-generate-charts' );
89
90 // instantiate the plugin
91 $plugin = Visualizer_Plugin::instance();
92
93 // instantiate Gutenberg block
94 add_action(
95 'plugins_loaded', function () {
96 if ( function_exists( 'register_block_type' ) ) {
97 Visualizer_Gutenberg_Block::get_instance();
98 }}
99 );
100
101 // set general modules
102 $plugin->setModule( Visualizer_Module_Setup::NAME );
103 $plugin->setModule( Visualizer_Module_Sources::NAME );
104 $plugin->setModule( Visualizer_Module_Chart::NAME );
105 if ( is_admin() || defined( 'WP_TESTS_DOMAIN' ) ) {
106 // set admin modules
107 $plugin->setModule( Visualizer_Module_Admin::NAME );
108 }
109
110 // set frontend modules
111 $plugin->setModule( Visualizer_Module_Frontend::NAME );
112
113 $vendor_file = VISUALIZER_ABSPATH . '/vendor/autoload_52.php';
114 if ( is_readable( $vendor_file ) ) {
115 include_once( $vendor_file );
116 }
117 add_filter( 'themeisle_sdk_products', 'visualizer_register_sdk', 10, 1 );
118 add_filter( 'pirate_parrot_log', 'visualizer_register_parrot', 10, 1 );
119 }
120
121 /**
122 * Registers with the SDK
123 *
124 * @since 1.0.0
125 */
126 function visualizer_register_sdk( $products ) {
127 $products[] = VISUALIZER_BASEFILE;
128 return $products;
129 }
130
131 /**
132 * Registers with the parrot plugin
133 *
134 * @since 1.0.0
135 */
136 function visualizer_register_parrot( $plugins ) {
137 $plugins[] = Visualizer_Plugin::NAME;
138 return $plugins;
139 }
140
141 // register autoloader function
142 spl_autoload_register( 'visualizer_autoloader' );
143 // launch the plugin
144 visualizer_launch();
145