szurubooru/src/AutoLoader.php

29 lines
802 B
PHP
Raw Normal View History

<?php
namespace Szurubooru;
final class AutoLoader
{
public static function init()
{
2014-09-09 12:34:57 +02:00
spl_autoload_register([__CLASS__, 'includeClassName']);
}
2014-09-09 12:34:57 +02:00
public static function includeClassName($className)
{
if (strpos($className, 'Szurubooru') === false)
return;
$className = str_replace('\\', DIRECTORY_SEPARATOR, $className);
$className = str_replace('Szurubooru', '', $className);
if (strpos($className, 'Tests') !== false)
$className = dirname(__DIR__) . DIRECTORY_SEPARATOR . str_replace('Tests', 'tests', $className);
else
$className = __DIR__ . DIRECTORY_SEPARATOR . $className;
$className .= '.php';
2014-09-09 12:34:57 +02:00
include($className);
}
}
AutoLoader::init();
2014-09-14 16:17:52 +02:00
require_once(__DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');