📁
SKYSHELL MANAGER
PHP v8.1.34
Create
Create
Path:
root
/
home
/
terracebizon
/
public_html
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
config.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
12934.91 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: bootstrap.php
<?php /** * Template Kit Import: Bootstrap File * * This starts things up. Registers the SPL and starts up some classes. * * @package Envato/Template_Kit_Import * @since 0.0.2 */ namespace Template_Kit_Import; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } spl_autoload_register( function ( $class ) { $prefix = __NAMESPACE__; $base_dir = __DIR__; $len = strlen( $prefix ); if ( strncmp( $prefix, $class, $len ) !== 0 || $class === $prefix ) { return; } $class = strtolower( $class ); $class = str_replace( array( '\\', '_' ), array( '/', '-' ), $class ); $class_path = strtolower( substr( $class, $len + 1 ) ); $class_name = basename( $class_path ); $class_folder = dirname( $class_path ); if ( ! $class_folder || $class_folder === '.' ) { $class_folder = ''; } else { $class_folder .= DIRECTORY_SEPARATOR; } $file = $base_dir . DIRECTORY_SEPARATOR . $class_folder . 'class-' . $class_name . '.php'; if ( file_exists( $file ) ) { require $file; } else { die( esc_html( basename( $file ) . ' not found.' ) ); } } ); Plugin::get_instance(); Backend\Options::get_instance(); Backend\REST::get_instance(); Backend\Elementor_Modal::get_instance(); Backend\Template_Kits::get_instance();
Save