public MaintenanceMode::applies(RouteMatchInterface $route_match)
Returns whether the site is in maintenance mode.
Parameters
\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match.
Return value
bool TRUE if the site is in maintenance mode.
Overrides MaintenanceModeInterface::applies
File
- core/lib/Drupal/Core/Site/MaintenanceMode.php, line 34
Class
- MaintenanceMode
- Provides the default implementation of the maintenance mode service.
Namespace
Drupal\Core\Site
Code
public function applies(RouteMatchInterface $route_match) { if (!$this->state->get('system.maintenance_mode')) { return FALSE; } if ($route = $route_match->getRouteObject()) { if ($route->getOption('_maintenance_access')) { return FALSE; } } return TRUE; }
Please login to continue.