public function MaintenanceModeSubscriber::onKernelRequestMaintenance in Zircon Profile 8
Same name in this branch
- 8 core/lib/Drupal/Core/EventSubscriber/MaintenanceModeSubscriber.php \Drupal\Core\EventSubscriber\MaintenanceModeSubscriber::onKernelRequestMaintenance()
- 8 core/modules/user/src/EventSubscriber/MaintenanceModeSubscriber.php \Drupal\user\EventSubscriber\MaintenanceModeSubscriber::onKernelRequestMaintenance()
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/EventSubscriber/MaintenanceModeSubscriber.php \Drupal\Core\EventSubscriber\MaintenanceModeSubscriber::onKernelRequestMaintenance()
Returns the site maintenance page if the site is offline.
Parameters
\Symfony\Component\HttpKernel\Event\GetResponseEvent $event: The event to process.
File
- core/
lib/ Drupal/ Core/ EventSubscriber/ MaintenanceModeSubscriber.php, line 97 - Contains \Drupal\Core\EventSubscriber\MaintenanceModeSubscriber.
Class
- MaintenanceModeSubscriber
- Maintenance mode subscriber for controller requests.
Namespace
Drupal\Core\EventSubscriberCode
public function onKernelRequestMaintenance(GetResponseEvent $event) {
$route_match = RouteMatch::createFromRequest($event
->getRequest());
if ($this->maintenanceMode
->applies($route_match)) {
// Don't cache maintenance mode pages.
\Drupal::service('page_cache_kill_switch')
->trigger();
if (!$this->maintenanceMode
->exempt($this->account)) {
// Deliver the 503 page if the site is in maintenance mode and the
// logged in user is not allowed to bypass it.
drupal_maintenance_theme();
$content = Xss::filterAdmin(SafeMarkup::format($this->config
->get('system.maintenance')
->get('message'), array(
'@site' => $this->config
->get('system.site')
->get('name'),
)));
$response = $this->bareHtmlPageRenderer
->renderBarePage([
'#markup' => $content,
], $this
->t('Site under maintenance'), 'maintenance_page');
$response
->setStatusCode(503);
$event
->setResponse($response);
}
else {
// Display a message if the logged in user has access to the site in
// maintenance mode. However, suppress it on the maintenance mode
// settings page.
if ($route_match
->getRouteName() != 'system.site_maintenance_mode') {
if ($this->account
->hasPermission('administer site configuration')) {
$this
->drupalSetMessage($this
->t('Operating in maintenance mode. <a href=":url">Go online.</a>', array(
':url' => $this->urlGenerator
->generate('system.site_maintenance_mode'),
)), 'status', FALSE);
}
else {
$this
->drupalSetMessage($this
->t('Operating in maintenance mode.'), 'status', FALSE);
}
}
}
}
}