-
-
Save kalenjohnson/edf8b4110f3cd570a23c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class autoloader { | |
public static $loader; | |
public static function init() | |
{ | |
if (self::$loader == NULL) | |
self::$loader = new self(); | |
return self::$loader; | |
} | |
public function __construct() | |
{ | |
spl_autoload_register( array($this,'commands') ); | |
} | |
public function commands( $class ) { | |
include plugin_dir_path( __FILE__ ) . 'commands/' . $class . '.command.php'; | |
} | |
} | |
//call | |
autoloader::init(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment