forked from rebillar/site-accueil-insa
16 lines
470 B
PHP
16 lines
470 B
PHP
<?php
|
|
|
|
spl_autoload_register(
|
|
function ($className) {
|
|
$classPath = explode('\\', $className);
|
|
if ($classPath[0] !== 'Davaxi') {
|
|
return;
|
|
}
|
|
// Drop 'Davaxi', and maximum file path depth in this project is 1
|
|
$classPath = array_slice($classPath, 1, 2);
|
|
$filePath = __DIR__ . '/' . implode('/', $classPath) . '.php';
|
|
if (file_exists($filePath)) {
|
|
require_once($filePath);
|
|
}
|
|
}
|
|
);
|