This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/inc.php
2022-01-17 11:25:34 +01:00

23 lines
434 B
PHP

<?php
/*
This is the main file to be included on every page.
It will act as a front controller of our application.
_____
/ \
| () () |
\ ^ /
|||||
|||||
Tread carefully
*/
// Autoloader
spl_autoload_register(function ($class_name) {
require __DIR__ . '/core/' . $class_name . '.php';
});
// Define global CONFIG constant.
define("CONFIG",
require __DIR__ . '/config.php'
);