You are here

public function SystemManager::checkRequirements in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/src/SystemManager.php \Drupal\system\SystemManager::checkRequirements()
  2. 10 core/modules/system/src/SystemManager.php \Drupal\system\SystemManager::checkRequirements()

Checks for requirement severity.

Return value

bool Returns the status of the system.

File

core/modules/system/src/SystemManager.php, line 94

Class

SystemManager
System Manager Service.

Namespace

Drupal\system

Code

public function checkRequirements() {
  $requirements = $this
    ->listRequirements();
  return $this
    ->getMaxSeverity($requirements) == static::REQUIREMENT_ERROR;
}