blob: a5dee186d558a982ed0efbe021a908fc80f8541d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?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();
|