engelsystem/includes/engelsystem.php

31 lines
704 B
PHP
Raw Normal View History

2017-11-01 12:35:45 +01:00
<?php
/**
* Bootstrap application
2017-11-01 12:35:45 +01:00
*/
use Engelsystem\Http\UrlGeneratorInterface;
require __DIR__ . '/application.php';
2017-11-01 12:35:45 +01:00
/**
* Include legacy code
*/
require __DIR__ . '/includes.php';
2017-11-01 12:35:45 +01:00
/**
* Check for maintenance
*/
/** @var \Engelsystem\Application $app */
2017-11-01 12:35:45 +01:00
if ($app->get('config')->get('maintenance')) {
http_response_code(503);
$url = $app->get(UrlGeneratorInterface::class);
$maintenance = file_get_contents(__DIR__ . '/../resources/views/layouts/maintenance.html');
$maintenance = str_replace('%APP_NAME%', $app->get('config')->get('app_name'), $maintenance);
$maintenance = str_replace('%ASSETS_PATH%', $url->to(''), $maintenance);
echo $maintenance;
2017-11-01 12:35:45 +01:00
die();
}