‪TYPO3CMS  11.5
IfHasRoleViewHelper.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
21 use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper;
22 
72 class ‪IfHasRoleViewHelper extends AbstractConditionViewHelper
73 {
79  public function ‪initializeArguments()
80  {
81  parent::initializeArguments();
82 
83  $this->registerArgument('role', 'string', 'The usergroup (either the usergroup uid or its title).');
84  }
85 
92  protected static function ‪evaluateCondition($arguments = null)
93  {
94  $role = $arguments['role'];
96  $userAspect = GeneralUtility::makeInstance(Context::class)->getAspect('frontend.user');
97  if (!$userAspect->isLoggedIn()) {
98  return false;
99  }
100  if (is_numeric($role)) {
101  $groupIds = $userAspect->getGroupIds();
102  return in_array((int)$role, $groupIds, true);
103  }
104  return in_array($role, $userAspect->getGroupNames(), true);
105  }
106 }
‪TYPO3\CMS\Fluid\ViewHelpers\Security\IfHasRoleViewHelper\evaluateCondition
‪static bool evaluateCondition($arguments=null)
Definition: IfHasRoleViewHelper.php:92
‪TYPO3\CMS\Core\Context\Context
Definition: Context.php:53
‪TYPO3\CMS\Fluid\ViewHelpers\Security\IfHasRoleViewHelper\initializeArguments
‪initializeArguments()
Definition: IfHasRoleViewHelper.php:79
‪TYPO3\CMS\Fluid\ViewHelpers\Security\IfHasRoleViewHelper
Definition: IfHasRoleViewHelper.php:73
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:50
‪TYPO3\CMS\Fluid\ViewHelpers\Security
Definition: IfAuthenticatedViewHelper.php:16
‪TYPO3\CMS\Core\Context\UserAspect
Definition: UserAspect.php:37