You are here

public function MaintenanceMode::exempt in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Site/MaintenanceMode.php \Drupal\Core\Site\MaintenanceMode::exempt()

Determines whether a user has access to the site in maintenance mode.

Parameters

\Drupal\Core\Session\AccountInterface $account: The logged in user.

Return value

bool TRUE if the user should be exempted from maintenance mode.

Overrides MaintenanceModeInterface::exempt

File

core/lib/Drupal/Core/Site/MaintenanceMode.php, line 56
Contains \Drupal\Core\Site\MaintenanceMode.

Class

MaintenanceMode
Provides the default implementation of the maintenance mode service.

Namespace

Drupal\Core\Site

Code

public function exempt(AccountInterface $account) {
  return $account
    ->hasPermission('access site in maintenance mode');
}