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.
24 lines
458 B
PHP
24 lines
458 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')) {
|
|
$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();
|
|
}
|