TYPO3 CMS  TYPO3_6-2
ErrorIconViewHelper.php
Go to the documentation of this file.
1 <?php
3 
23 
31  public function render($errorNumber = 0) {
32  $errorSymbols = array(
33  '0' => '',
34  '1' => \TYPO3\CMS\Backend\Template\DocumentTemplate::STATUS_ICON_WARNING,
35  '2' => \TYPO3\CMS\Backend\Template\DocumentTemplate::STATUS_ICON_ERROR,
36  '3' => \TYPO3\CMS\Backend\Template\DocumentTemplate::STATUS_ICON_ERROR
37  );
38  return $this->getDocInstance()->icons($errorSymbols[$errorNumber]);
39  }
40 
41 }