| Total Complexity | 4 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class CreatorRoleViewHelper extends \TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * frontendUserHelper |
||
| 23 | * |
||
| 24 | * @var \EWW\Dpf\Helper\FrontendUserHelper |
||
| 25 | * @inject |
||
| 26 | */ |
||
| 27 | protected $frontendUserHelper = null; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * security |
||
| 31 | * |
||
| 32 | * @var \EWW\Dpf\Security\Security |
||
| 33 | * @inject |
||
| 34 | */ |
||
| 35 | protected $security = null; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Shows the frontend user name of the given frontenduser user id. |
||
| 39 | * |
||
| 40 | * @param int $feUserId |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | public function render($feUserId) |
||
| 62 |