403Webshell
Server IP : 127.0.1.1  /  Your IP : 127.0.0.1
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux sealall 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
User : devops ( 1000)
PHP Version : 8.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/domains/sealall.ca/wp-content/themes/bricks/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/domains/sealall.ca/wp-content/themes/bricks/includes/autoloader.php
<?php
namespace Bricks;

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

/**
 * Autoloads plugin classes using PSR-4.
 */
class Autoloader {
	/**
	 * Handle autoloading of PHP classes
	 *
	 * @param String $class
	 * @return void
	 */
	public static function autoload( $class ) {
		if ( strpos( $class, __NAMESPACE__ ) !== 0 ) {
			return;
		}

		$class                  = substr( $class, strlen( __NAMESPACE__ ) );
		$class                  = strtolower( $class );
		$class                  = str_ireplace( '_', '-', $class );
		$file_parts             = explode( '\\', $class );
		$len                    = count( $file_parts );
		$file_parts[ $len - 1 ] = $file_parts[ $len - 1 ];
		$file                   = dirname( __FILE__ ) . implode( '/', $file_parts ) . '.php';

		if ( is_file( $file ) ) {
			require_once $file;
		}
	}

	public static function load_functions() {
		foreach ( glob( BRICKS_PATH . 'includes/utilities/*.php' ) as $filename ) {
			require_once $filename;
		}
	}

	/**
	 * Register SPL autoloader
	 *
	 * @param bool $prepend
	 */
	public static function register( $prepend = false ) {
		self::load_functions();

		spl_autoload_register( [ new self(), 'autoload' ], true, $prepend );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit