123 lines
2.2 KiB
PHP
123 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* CartFlows Admin.
|
|
*
|
|
* @package CartFlows
|
|
*/
|
|
|
|
namespace CartflowsAdmin;
|
|
|
|
use CartflowsAdmin\AdminCore\Api\ApiInit;
|
|
use CartflowsAdmin\AdminCore\Ajax\AjaxInit;
|
|
use CartflowsAdmin\AdminCore\Inc\AdminMenu;
|
|
use CartflowsAdmin\Wizard\Inc\WizardCore;
|
|
use CartflowsAdmin\Wizard\Ajax\WizardAjaxInit;
|
|
use CartflowsAdmin\AdminCore\Inc\StoreCheckout;
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
/**
|
|
* Class Admin_Loader.
|
|
*/
|
|
class Admin_Loader {
|
|
|
|
/**
|
|
* Instance
|
|
*
|
|
* @access private
|
|
* @var object Class object.
|
|
* @since 1.0.0
|
|
*/
|
|
private static $instance;
|
|
|
|
/**
|
|
* Initiator
|
|
*
|
|
* @since 1.0.0
|
|
* @return object initialized object of class.
|
|
*/
|
|
public static function get_instance() {
|
|
if ( ! isset( self::$instance ) ) {
|
|
self::$instance = new self();
|
|
}
|
|
return self::$instance;
|
|
}
|
|
|
|
/**
|
|
* Autoload classes.
|
|
*
|
|
* @param string $class class name.
|
|
*/
|
|
public function autoload( $class ) {
|
|
|
|
if ( 0 !== strpos( $class, __NAMESPACE__ ) ) {
|
|
return;
|
|
}
|
|
|
|
$class_to_load = $class;
|
|
|
|
if ( ! class_exists( $class_to_load ) ) {
|
|
$filename = strtolower(
|
|
preg_replace(
|
|
array( '/^' . __NAMESPACE__ . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ),
|
|
array( '', '$1-$2', '-', DIRECTORY_SEPARATOR ),
|
|
$class_to_load
|
|
)
|
|
);
|
|
|
|
$file = CARTFLOWS_DIR . $filename . '.php';
|
|
|
|
// if the file redable, include it.
|
|
if ( is_readable( $file ) ) {
|
|
include $file;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function __construct() {
|
|
|
|
spl_autoload_register( array( $this, 'autoload' ) );
|
|
|
|
$this->define_constants();
|
|
$this->setup_classes();
|
|
}
|
|
|
|
/**
|
|
* Include required classes.
|
|
*/
|
|
public function define_constants() {
|
|
define( 'CARTFLOWS_ADMIN_CORE_DIR', CARTFLOWS_DIR . 'admin-core/' );
|
|
define( 'CARTFLOWS_ADMIN_CORE_URL', CARTFLOWS_URL . 'admin-core/' );
|
|
}
|
|
|
|
/**
|
|
* Include required classes.
|
|
*/
|
|
public function setup_classes() {
|
|
|
|
/* Init API */
|
|
ApiInit::get_instance();
|
|
|
|
if ( is_admin() ) {
|
|
StoreCheckout::get_instance();
|
|
/* Setup Menu */
|
|
AdminMenu::get_instance();
|
|
|
|
/* Ajax init */
|
|
AjaxInit::get_instance();
|
|
|
|
WizardAjaxInit::get_instance();
|
|
|
|
WizardCore::get_instance();
|
|
}
|
|
}
|
|
}
|
|
|
|
Admin_Loader::get_instance();
|