-
Notifications
You must be signed in to change notification settings - Fork 29
/
index.php
236 lines (206 loc) · 7.34 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
/*
Plugin Name: Visualizer: Tables and Charts for WordPress
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs/
Description: Effortlessly create and embed responsive charts and tables with Visualizer, a powerful WordPress plugin that enhances data presentation from multiple sources.
Version: 3.11.8
Author: Themeisle
Author URI: http://themeisle.com
License: GPL v2.0 or later
WordPress Available: yes
Requires License: no
Pro Slug: visualizer-pro
License URI: http://www.opensource.org/licenses/gpl-license.php
*/
// Prevent direct access to the plugin folder.
if ( ! defined( 'ABSPATH' ) ) {
header( 'HTTP/1.0 404 Not Found', true, 404 );
exit;
}
// don't load the plugin, if it has been already loaded
if ( class_exists( 'Visualizer_Plugin', false ) ) {
return;
}
// support for pro versions before 3.3.0
if ( class_exists( 'Visualizer_Pro', false ) ) {
define( 'VISUALIZER_PRO', true );
} else {
defined( 'VISUALIZER_PRO' ) || define( 'VISUALIZER_PRO', false );
}
/**
* Automatically loads classes for the plugin. Checks a namespace and loads only
* approved classes.
*
* @since 1.0.0
*
* @param string $class The class name to autoload.
*
* @return boolean Returns TRUE if the class is located. Otherwise FALSE.
*/
function visualizer_autoloader( $class ) {
$namespaces = array( 'Visualizer' );
foreach ( $namespaces as $namespace ) {
if ( substr( $class, 0, strlen( $namespace ) ) === $namespace ) {
$filename = dirname( __FILE__ ) . str_replace( '_', DIRECTORY_SEPARATOR, "_classes_{$class}.php" );
if ( is_readable( $filename ) ) {
require $filename;
return true;
}
}
}
return false;
}
/**
* Instantiates the plugin and setup all modules.
*
* @since 1.0.0
*/
function visualizer_launch() {
// setup environment
define( 'VISUALIZER_BASEFILE', __FILE__ );
define( 'VISUALIZER_BASENAME', plugin_basename( __FILE__ ) );
define( 'VISUALIZER_ABSURL', plugins_url( '/', __FILE__ ) );
define( 'VISUALIZER_ABSPATH', dirname( __FILE__ ) );
define( 'VISUALIZER_DIRNAME', basename( VISUALIZER_ABSPATH ) );
define( 'VISUALIZER_REST_VERSION', 1 );
// 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).
// this is also used in Block.php
if ( ! defined( 'VISUALIZER_TEST_JS_CUSTOMIZATION' ) ) {
define( 'VISUALIZER_TEST_JS_CUSTOMIZATION', false );
}
if ( ! defined( 'VISUALIZER_CSV_DELIMITER' ) ) {
define( 'VISUALIZER_CSV_DELIMITER', ',' );
}
if ( ! defined( 'VISUALIZER_CSV_ENCLOSURE' ) ) {
define( 'VISUALIZER_CSV_ENCLOSURE', '"' );
}
if ( ! defined( 'VISUALIZER_DEBUG' ) ) {
define( 'VISUALIZER_DEBUG', false );
}
define( 'VISUALIZER_SKIP_CHART_TYPE_PAGE', true );
// if x and y features are required, this value should read x,y or x|y or x;y.
define( 'VISUALIZER_ENABLE_BETA_FEATURES', '' );
// the link to pre-build queries.
define( 'VISUALIZER_DB_QUERY_DOC_URL', 'https://docs.themeisle.com/article/970-visualizer-sample-queries-to-generate-charts' );
define( 'VISUALIZER_MAIN_DOC', 'https://docs.themeisle.com/category/657-visualizer' );
define( 'VISUALIZER_DOC_COLLECTION', 'https://docs.themeisle.com/search?collectionId=561ec249c69791452ed4bceb&query=#+visualizer' );
define( 'VISUALIZER_DEMO_URL', 'https://demo.themeisle.com/visualizer/#' );
define( 'VISUALIZER_CODE_SNIPPETS_URL', 'https://docs.themeisle.com/category/726-visualizer' );
define( 'VISUALIZER_SUBSCRIBE_API', 'https://api.themeisle.com/tracking/subscribe' );
// to redirect all themeisle_log_event to error log.
define( 'VISUALIZER_LOCAL_DEBUG', false );
// instantiate the plugin
$plugin = Visualizer_Plugin::instance();
// instantiate Gutenberg block
add_action(
'plugins_loaded', function () {
if ( function_exists( 'register_block_type' ) ) {
Visualizer_Gutenberg_Block::get_instance();
}}
);
// set general modules
$plugin->setModule( Visualizer_Module_Utility::NAME );
$plugin->setModule( Visualizer_Module_Setup::NAME );
$plugin->setModule( Visualizer_Module_Sources::NAME );
$plugin->setModule( Visualizer_Module_Chart::NAME );
if ( is_admin() || defined( 'WP_TESTS_DOMAIN' ) ) {
// set admin modules
$plugin->setModule( Visualizer_Module_Admin::NAME );
}
// set frontend modules
$plugin->setModule( Visualizer_Module_Frontend::NAME );
$plugin->setModule( Visualizer_Module_AMP::NAME );
// Set setup wizard module.
$plugin->setModule( Visualizer_Module_Wizard::NAME );
$vendor_file = VISUALIZER_ABSPATH . '/vendor/autoload.php';
if ( is_readable( $vendor_file ) ) {
include_once( $vendor_file );
}
add_filter( 'themeisle_sdk_products', 'visualizer_register_sdk', 10, 1 );
add_filter( 'pirate_parrot_log', 'visualizer_register_parrot', 10, 1 );
add_filter(
'themeisle_sdk_compatibilities/' . VISUALIZER_DIRNAME, function ( $compatibilities ) {
$compatibilities['VisualizerPRO'] = array(
'basefile' => defined( 'VISUALIZER_PRO_BASEFILE' ) ? VISUALIZER_PRO_BASEFILE : '',
'required' => '1.8',
'tested_up' => '1.14',
);
return $compatibilities;
}
);
add_filter(
'visualizer_about_us_metadata',
function() {
return array(
'logo' => esc_url( VISUALIZER_ABSURL . 'images/visualizer-logo.svg' ),
'location' => 'visualizer',
'has_upgrade_menu' => ! Visualizer_Module::is_pro(),
'upgrade_text' => esc_html__( 'Get Visualizer Pro', 'feedzy-rss-feeds' ),
'upgrade_link' => esc_url( tsdk_utmify( Visualizer_Plugin::PRO_TEASER_URL, 'sidebarMenuUpgrade', 'index' ) ),
);
}
);
if ( ! defined( 'TI_CYPRESS_TESTING' ) && 'yes' === get_option( 'visualizer_logger_flag', 'no' ) ) {
add_filter( 'themeisle_sdk_enable_telemetry', '__return_true' );
add_filter(
'themeisle_sdk_telemetry_products',
function( $products ) {
$already_registered = false;
$license = get_option( 'visualizer_pro_license_data', 'free' );
if ( ! empty( $license ) && is_object( $license ) ) {
$license = $license->key;
}
$track_hash = 'free' === $license ? 'free' : wp_hash( $license );
foreach ( $products as &$product ) {
if ( strstr( $product['slug'], 'visualizer' ) !== false ) {
$already_registered = true;
$product['trackHash'] = $track_hash;
}
}
if ( $already_registered ) {
return $products;
}
// Add Visualizer to the list of products to track the usage of AI Block.
$products[] = array(
'slug' => 'visualizer',
'consent' => 'yes' === get_option( 'visualizer_logger_flag', 'no' ),
'trackHash' => $track_hash,
);
return $products;
}
);
}
}
/**
* Registers with the SDK
*
* @since 1.0.0
*/
function visualizer_register_sdk( $products ) {
$products[] = VISUALIZER_BASEFILE;
return $products;
}
/**
* Registers with the parrot plugin
*
* @since 1.0.0
*/
function visualizer_register_parrot( $plugins ) {
$plugins[] = Visualizer_Plugin::NAME;
return $plugins;
}
// register autoloader function
spl_autoload_register( 'visualizer_autoloader' );
// launch the plugin
visualizer_launch();
if ( VISUALIZER_LOCAL_DEBUG ) {
add_action( 'themeisle_log_event', 'visualizer_themeisle_log_event', 10, 5 );
/**
* Redirect themeisle_log_event to error log.
*/
function visualizer_themeisle_log_event( $name, $msg, $type, $file, $line ) {
if ( $name === Visualizer_Plugin::NAME ) {
error_log( sprintf( '%s (%s:%d): %s', $type, $file, $line, $msg ) );
}
}
}