You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
372 B
PHP
28 lines
372 B
PHP
<?php
|
|
|
|
/**
|
|
* Bootstrap application
|
|
*/
|
|
require __DIR__ . '/application.php';
|
|
|
|
|
|
/**
|
|
* Include legacy code
|
|
*/
|
|
require __DIR__ . '/includes.php';
|
|
|
|
|
|
/**
|
|
* Check for maintenance
|
|
*/
|
|
if ($app->get('config')->get('maintenance')) {
|
|
echo file_get_contents(__DIR__ . '/../resources/views/layouts/maintenance.html');
|
|
die();
|
|
}
|
|
|
|
|
|
/**
|
|
* Init authorization
|
|
*/
|
|
load_auth();
|