# storeengine/2.2.0/includes/autoload.php

StoreEngine — Complete eCommerce Solution with Memberships, Licensing, Affiliates &amp; More, version 2.2.0. 104 lines.

- Page: https://pluginprobe.com/plugins/storeengine/2.2.0/code/includes/autoload.php
- Raw: https://pluginprobe.com/plugins/storeengine/2.2.0/raw/includes/autoload.php
- Modified: 2025-12-09T08:04:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/storeengine/2.2.0/code/includes/autoload.php#L10-L20`.

```php
<?php

namespace StoreEngine;

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

class Autoload {

	/**
	 * Instance
	 *
	 * @access private
	 * @var ?Autoload Class Instance.
	 */
	private static ?Autoload $instance = null;

	/**
	 * Autoload directories for different namespaces.
	 *
	 * @var array
	 */
	private array $autoload_directories = [
		'StoreEngine'                  => STOREENGINE_ROOT_DIR_PATH . 'includes/',
		'StoreEngine\Payment\Gateways' => STOREENGINE_INCLUDES_DIR_PATH . 'payment-gateways/',
	];

	/**
	 * Initiator
	 */
	public static function get_instance(): Autoload {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}

		return self::$instance;
	}

	/**
	 * Register autoload directories for namespaces.
	 *
	 * @param string $namespace Namespace to autoload.
	 * @param string $directory Directory path for the namespace.
	 */
	public function add_namespace_directory( string $namespace, string $directory ) {
		$this->autoload_directories[ $namespace ] = trailingslashit( $directory );
	}

	/**
	 * Autoload classes.
	 *
	 * @param string $class Class name.
	 */
	public function autoload( string $class ) {
		foreach ( $this->autoload_directories as $namespace => $directory ) {
			if ( 0 === strpos( $class, $namespace ) ) {
				$class_to_load = $class;
				$filename      = strtolower(
					preg_replace(
						[ '/^' . preg_quote( $namespace, '\\\/' ) . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
						[ '', '$1-$2', '-', DIRECTORY_SEPARATOR ],
						$class_to_load
					)
				);

				$file = $directory . $filename . '.php';

				if ( strpos( $file, 'includes/addons/' ) !== false ) {
					$file = str_replace( 'includes/addons/', 'addons/', $file );
				}

				// If the file is readable, include it.
				if ( is_readable( $file ) ) {
					require_once $file;
				}
			}
		}
	}

	/**
	 * Constructor
	 */
	protected function __construct() {
		spl_autoload_register( [ $this, 'autoload' ] );
	}

	/**
	 * Cloning is forbidden.
	 */
	public function __clone() {
		_doing_it_wrong( __FUNCTION__, esc_html__( 'Cloning is forbidden.', 'storeengine' ), '1.3.3' );
	}

	/**
	 * Unserializing instances of this class is forbidden.
	 */
	public function __wakeup() {
		_doing_it_wrong( __FUNCTION__, esc_html__( 'Unserializing instances of this class is forbidden.', 'storeengine' ), '1.3.3' );
	}
}

Autoload::get_instance();

```
