function MaintenanceMode::applies
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 50 
Class
- MaintenanceMode
- Provides the default implementation of the maintenance mode service.
Namespace
Drupal\Core\SiteCode
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;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
