<?php
/**
 * Plugin Name: App Classes
 * Description: Register the autoloader for all our app classes
 * Provides: Classes
 */

spl_autoload_register(function($class) {
	
	$segments = array_filter(explode("\\", $class));
	$first = array_shift($segments);

	if($first === "WPPlugins") {
		$path = dirname(__DIR__)."/classes/".implode("/",$segments).".php";

	} else {

		array_unshift($segments,$first);
		$path = WP_PLUGINS_DIR. "/" . implode("/", $segments) . ".php";

	}

	if(file_exists($path)) {
		@include_once $path;
	}
});