Skip to content

Instantly share code, notes, and snippets.

@drrobotnik
Created January 8, 2015 04:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save drrobotnik/4e16b7eaff3ebaac5cb2 to your computer and use it in GitHub Desktop.
Save drrobotnik/4e16b7eaff3ebaac5cb2 to your computer and use it in GitHub Desktop.
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 ) {
set_include_path( plugin_dir_path( __FILE__ ).'commands/');
spl_autoload_extensions('.command.php');
spl_autoload($class);
}
}
//call
autoloader::init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment