removed 'application' folder to have everything in the root directory
This commit is contained in:
47
core/AutoLoader.php
Normal file
47
core/AutoLoader.php
Normal file
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace ManiaControl;
|
||||
|
||||
/**
|
||||
* ManiaControl AutoLoader
|
||||
*
|
||||
* @author ManiaControl Team <mail@maniacontrol.com>
|
||||
* @copyright 2014 ManiaControl Team
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
abstract class AutoLoader {
|
||||
|
||||
/**
|
||||
* Register the Auto Loader
|
||||
*/
|
||||
public static function register() {
|
||||
spl_autoload_register(array(get_class(), 'autoload'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Try to autoload the Class with the given Name
|
||||
*
|
||||
* @param string $className
|
||||
*/
|
||||
public static function autoload($className) {
|
||||
$classPath = str_replace('\\', DIRECTORY_SEPARATOR, $className);
|
||||
|
||||
// Core file
|
||||
$coreClassPath = preg_replace('/ManiaControl/', 'core', $classPath, 1);
|
||||
$coreFilePath = MANIACONTROL_PATH . $coreClassPath . '.php';
|
||||
if (file_exists($coreFilePath)) {
|
||||
include_once $coreFilePath;
|
||||
return;
|
||||
}
|
||||
|
||||
// Other file
|
||||
$paths = array('plugins', 'libs', 'libs' . DIRECTORY_SEPARATOR . 'curl-easy');
|
||||
foreach ($paths as $path) {
|
||||
$filePath = MANIACONTROL_PATH . $path . DIRECTORY_SEPARATOR . $classPath . '.php';
|
||||
if (file_exists($filePath)) {
|
||||
include_once $filePath;
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user