AlkantarClanX12

Your IP : 18.217.208.220


Current Path : /home/thanudqk/128shen.com/wp-content/plugins/variations-buttons/includes/AutoLoader/
Upload File :
Current File : /home/thanudqk/128shen.com/wp-content/plugins/variations-buttons/includes/AutoLoader/AutoLoader.php

<?php
/*********************************************************************/
/* PROGRAM    (C) 2022 FlexRC                                        */
/* PROPERTY   3-7170 Ash Cres                                        */
/* OF         Vancouver, BC V6P3K7                                   */
/*            CANADA                                                 */
/*            Voice (604) 800-7879                                   */
/*********************************************************************/

namespace OneTeamSoftware\WooCommerce\AutoLoader;

if (!class_exists(__NAMESPACE__ . '\\AutoLoader')):

class AutoLoader
{
	protected $namespace;
	protected $includePath;

	public function __construct($includePath, $namespace)
	{
		$this->namespace = trim($namespace, '\\') . '\\';
		$this->includePath = $includePath;
	}

	public function autoload($class)
	{
		if (strpos($class, $this->namespace) === 0) {
			$filePath = $this->includePath . '/' . str_replace('\\', '/', substr($class, strlen($this->namespace))) . '.php';
			if (file_exists($filePath)) {
				include_once($filePath);
			}
		}
	}

	public function register()
	{
		spl_autoload_register(array($this, 'autoload'));
	}
}

endif;