TYPO3 CMS  TYPO3_6-2
InstallToolDisabledAction.php
Go to the documentation of this file.
1 <?php
3 
18 
23 
29  protected function executeAction() {
31  $statusCheck = $this->objectManager->get('TYPO3\\CMS\\Install\\SystemEnvironment\\Check');
32  $statusObjects = $statusCheck->getStatus();
34  $statusUtility = $this->objectManager->get('TYPO3\\CMS\\Install\\Status\\StatusUtility');
35  $alerts = $statusUtility->filterBySeverity($statusObjects, 'alert');
36  $this->view->assign('alerts', $alerts);
37  return $this->view->render(!empty($alerts));
38  }
39 }