| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class ShowDocumentTypeViewHelper extends \TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * documentTypeRepository |
||
| 21 | * |
||
| 22 | * @var \EWW\Dpf\Domain\Repository\DocumentTypeRepository |
||
| 23 | * @inject |
||
| 24 | */ |
||
| 25 | protected $documentTypeRepository = null; |
||
| 26 | |||
| 27 | |||
| 28 | /** |
||
| 29 | * Gets the localized display name of the given document type. |
||
| 30 | * |
||
| 31 | * @param string $docType |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | public function render($docType) |
||
| 46 |