X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/d5901a1fcc8b79f9a23bd3888ef2f281f07b9459..328144ad50541b7b854fa05a1eb2f066153e8625:/scripts/index.php?ds=sidebyside diff --git a/scripts/index.php b/scripts/index.php index 5da912e..1f7a7ac 100644 --- a/scripts/index.php +++ b/scripts/index.php @@ -2,20 +2,7 @@ //index repositories in elasticsearch namespace phorkie; -set_include_path( - __DIR__ . '/../src/' - . PATH_SEPARATOR . get_include_path() -); -spl_autoload_register( - function ($class) { - $file = str_replace(array('\\', '_'), '/', $class) . '.php'; - $hdl = @fopen($file, 'r', true); - if ($hdl !== false) { - fclose($hdl); - require $file; - } - } -); +require_once __DIR__ . '/../src/phorkie/autoload.php'; require_once __DIR__ . '/../data/config.default.php'; if (file_exists(__DIR__ . '/../data/config.php')) { require_once __DIR__ . '/../data/config.php';