PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.5.1
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.5.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 | vendor/codeinwp/themeisle-sdk/start.php +18 -17 3.1.33.5.1 View file →
@@ -12,32 +12,33 @@
12 12
13 13 if ( ! defined( 'ABSPATH' ) ) {
14 14 exit;
15 15 }
16 -$products = apply_filters( 'themeisle_sdk_products', array() );
17 -$path = dirname( __FILE__ );
18 -$files_to_load = [
19 - $path . '/src/' . 'Loader.php',
20 - $path . '/src/' . 'Product.php',
16 +$products = apply_filters( 'themeisle_sdk_products', array() );
17 +$themeisle_library_path = dirname( __FILE__ );
18 +$files_to_load = [
19 + $themeisle_library_path . '/src/Loader.php',
20 + $themeisle_library_path . '/src/Product.php',
21 21
22 - $path . '/src/' . 'Common/Abstract_module.php',
23 - $path . '/src/' . 'Common/Module_factory.php',
22 + $themeisle_library_path . '/src/Common/Abstract_module.php',
23 + $themeisle_library_path . '/src/Common/Module_factory.php',
24 24
25 - $path . '/src/' . 'Modules/Dashboard_widget.php',
26 - $path . '/src/' . 'Modules/Rollback.php',
27 - $path . '/src/' . 'Modules/Uninstall_feedback.php',
28 - $path . '/src/' . 'Modules/Licenser.php',
29 - $path . '/src/' . 'Modules/Endpoint.php',
30 - $path . '/src/' . 'Modules/Notification.php',
31 - $path . '/src/' . 'Modules/Logger.php',
32 - $path . '/src/' . 'Modules/Translate.php',
33 - $path . '/src/' . 'Modules/Review.php',
25 + $themeisle_library_path . '/src/Modules/Dashboard_widget.php',
26 + $themeisle_library_path . '/src/Modules/Rollback.php',
27 + $themeisle_library_path . '/src/Modules/Uninstall_feedback.php',
28 + $themeisle_library_path . '/src/Modules/Licenser.php',
29 + $themeisle_library_path . '/src/Modules/Endpoint.php',
30 + $themeisle_library_path . '/src/Modules/Notification.php',
31 + $themeisle_library_path . '/src/Modules/Logger.php',
32 + $themeisle_library_path . '/src/Modules/Translate.php',
33 + $themeisle_library_path . '/src/Modules/Review.php',
34 + $themeisle_library_path . '/src/Modules/Recommendation.php',
34 35 ];
35 36
36 37 $files_to_load = array_merge( $files_to_load, apply_filters( 'themeisle_sdk_required_files', [] ) );
37 38
38 39 foreach ( $files_to_load as $file ) {
39 - if ( is_readable( $file ) ) {
40 + if ( is_file( $file ) ) {
40 41 require_once $file;
41 42 }
42 43 }
43 44