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

50 lines
891 B
PHP
Raw Normal View History

2022-01-15 10:26:02 +00:00
<?php
2022-03-02 06:15:12 +00:00
/**
* This is the main file to be included on every page.
* It will act as a front controller of our application.
* _____
* / \
* | () () |
* \ ^ /
* |||||
* |||||
*
* Tread carefully
*/
// PSR-4 like autoloader
spl_autoload_register(
function ($className) {
$path = __DIR__ . '/lib/' . str_replace('\\', '/', $className) . '.php';
require $path;
}
);
2022-01-17 10:25:34 +00:00
2022-03-02 06:15:12 +00:00
use App\Core\ {
ErrorHandler,
Config,
Database,
Session,
User,
App,
AccessControl
};
2022-01-30 21:11:38 +00:00
2022-03-02 06:15:12 +00:00
new ErrorHandler();
2022-01-27 22:17:43 +00:00
2022-03-02 06:15:12 +00:00
$config = (new Config(__DIR__ . '/config.php'))->config;
2022-01-27 22:17:43 +00:00
2022-01-21 20:32:21 +00:00
$database = new Database($config['database']);
2022-02-06 02:35:20 +00:00
2022-03-02 06:15:12 +00:00
$session = new Session();
2022-02-06 02:35:20 +00:00
2022-03-02 06:15:12 +00:00
$user = new User($session, $database);
2022-01-21 20:32:21 +00:00
2022-03-02 06:15:12 +00:00
$app = new App(__DIR__, $config, $database, $session, $user);
2022-01-21 20:32:21 +00:00
2022-03-02 06:15:12 +00:00
// we will use $app instead
unset($config, $database, $session, $user);
2022-03-13 19:54:34 +00:00
new AccessControl($app);
2022-01-21 20:32:21 +00:00
return $app;