40 lines
653 B
PHP
40 lines
653 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Functions that need to be included before config
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Joins paths together. Variadic to take an
|
||
|
* arbitrary number of arguments
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
function _dir()
|
||
|
{
|
||
|
return implode(DIRECTORY_SEPARATOR, func_get_args());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set up autoloaders
|
||
|
*
|
||
|
* @codeCoverageIgnore
|
||
|
* @return void
|
||
|
*/
|
||
|
function _setup_autoloaders()
|
||
|
{
|
||
|
require _dir(ROOT_DIR, '/vendor/autoload.php');
|
||
|
spl_autoload_register(function ($class) {
|
||
|
$dirs = ["base", "controllers", "models"];
|
||
|
|
||
|
foreach($dirs as $dir)
|
||
|
{
|
||
|
$file = _dir(APP_DIR, $dir, "{$class}.php");
|
||
|
if (file_exists($file))
|
||
|
{
|
||
|
require_once $file;
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|