function StatusReportPage::getInfo
Same name in other branches
- 9 core/modules/system/src/Element/StatusReportPage.php \Drupal\system\Element\StatusReportPage::getInfo()
- 8.9.x core/modules/system/src/Element/StatusReportPage.php \Drupal\system\Element\StatusReportPage::getInfo()
- 10 core/modules/system/src/Element/StatusReportPage.php \Drupal\system\Element\StatusReportPage::getInfo()
Overrides ElementInterface::getInfo
File
-
core/
modules/ system/ src/ Element/ StatusReportPage.php, line 19
Class
- StatusReportPage
- Creates status report page element.
Namespace
Drupal\system\ElementCode
public function getInfo() {
$class = static::class;
return [
'#theme' => 'status_report_page',
'#pre_render' => [
[
$class,
'preRenderCounters',
],
[
$class,
'preRenderGeneralInfo',
],
[
$class,
'preRenderRequirements',
],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.