Returns responses for System Info routes.
Expanded class hierarchy of SystemInfoController
class SystemInfoController implements ControllerInterface {
/**
* System Manager Service.
*
* @var \Drupal\system\SystemManager
*/
protected $systemManager;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('system.manager'));
}
/**
* Constructs a SystemInfoController object.
*
* @param \Drupal\system\SystemManager $systemManager
* System manager service.
*/
public function __construct(SystemManager $systemManager) {
$this->systemManager = $systemManager;
}
/**
* Displays the site status report.
*
* @return string
* The current status of the Drupal installation.
*/
public function status() {
$requirements = $this->systemManager
->listRequirements();
$this->systemManager
->fixAnonymousUid();
return theme('status_report', array(
'requirements' => $requirements,
));
}
/**
* Returns the contents of phpinfo().
*
* @return \Symfony\Component\HttpFoundation\Response
* A response object to be sent to the client.
*/
public function php() {
ob_start();
phpinfo();
$output = ob_get_clean();
return new Response($output);
}
}
Name![]() |
Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SystemInfoController:: |
protected | property | System Manager Service. | |
SystemInfoController:: |
public static | function |
Instantiates a new instance of this controller. Overrides ControllerInterface:: |
|
SystemInfoController:: |
public | function | Returns the contents of phpinfo(). | |
SystemInfoController:: |
public | function | Displays the site status report. | |
SystemInfoController:: |
public | function | Constructs a SystemInfoController object. |