Server IP : 170.150.155.74 / Your IP : 3.136.23.84 Web Server : Apache/2.4.53 (Debian) System : Linux b22bf132354b 5.4.0-162-generic #179-Ubuntu SMP Mon Aug 14 08:51:31 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/neve/vendor/codeinwp/themeisle-sdk/ |
Upload File : |
<?php /** * File responsible for sdk files loading. * * @package ThemeIsleSDK * @copyright Copyright (c) 2017, Marius Cristea * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.1.0 */ namespace ThemeisleSDK; if ( ! defined( 'ABSPATH' ) ) { exit; } $products = apply_filters( 'themeisle_sdk_products', array() ); $themeisle_library_path = dirname( __FILE__ ); $files_to_load = [ $themeisle_library_path . '/src/Loader.php', $themeisle_library_path . '/src/Product.php', $themeisle_library_path . '/src/Common/Abstract_module.php', $themeisle_library_path . '/src/Common/Module_factory.php', $themeisle_library_path . '/src/Modules/Dashboard_widget.php', $themeisle_library_path . '/src/Modules/Rollback.php', $themeisle_library_path . '/src/Modules/Uninstall_feedback.php', $themeisle_library_path . '/src/Modules/Licenser.php', $themeisle_library_path . '/src/Modules/Endpoint.php', $themeisle_library_path . '/src/Modules/Notification.php', $themeisle_library_path . '/src/Modules/Logger.php', $themeisle_library_path . '/src/Modules/Translate.php', $themeisle_library_path . '/src/Modules/Review.php', $themeisle_library_path . '/src/Modules/Recommendation.php', ]; $files_to_load = array_merge( $files_to_load, apply_filters( 'themeisle_sdk_required_files', [] ) ); foreach ( $files_to_load as $file ) { if ( is_file( $file ) ) { require_once $file; } } Loader::init(); foreach ( $products as $product ) { Loader::add_product( $product ); }