blob: ca121cc2e1622b163294aaf472ba30e2a1b98ae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* Bootstrap application
*/
require __DIR__ . '/application.php';
/**
* Include legacy code
*/
require __DIR__ . '/includes.php';
/**
* Check for maintenance
*/
if ($app->get('config')->get('maintenance')) {
$maintenance = file_get_contents(__DIR__ . '/../resources/views/layouts/maintenance.html');
$maintenance = str_replace('%APP_NAME%', $app->get('config')->get('app_name'), $maintenance);
echo $maintenance;
die();
}
|