public function SystemInfoController::status

Displays the site status report.

Return value

string The current status of the Drupal installation.

1 string reference to 'SystemInfoController::status'
system.routing.yml in drupal/core/modules/system/system.routing.yml
drupal/core/modules/system/system.routing.yml

File

drupal/core/modules/system/lib/Drupal/system/Controller/SystemInfoController.php, line 53
Contains \Drupal\system\Controller\SystemInfoController.

Class

SystemInfoController
Returns responses for System Info routes.

Namespace

Drupal\system\Controller

Code

public function status() {
  $requirements = $this->systemManager
    ->listRequirements();
  $this->systemManager
    ->fixAnonymousUid();
  return theme('status_report', array(
    'requirements' => $requirements,
  ));
}