| Total Complexity | 4 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class FrontendUserGroup extends \TYPO3\CMS\Extbase\Domain\Model\FrontendUserGroup |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Gets the kitodo role |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $kitodoRole = ''; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * contains group ids which are allowed to access |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | protected $accessToGroups = ''; |
||
| 34 | |||
| 35 | public function getKitodoRole() |
||
| 36 | { |
||
| 37 | return $this->kitodoRole; |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Sets the kitodo role |
||
| 42 | * |
||
| 43 | * @param $kitodoRole |
||
| 44 | */ |
||
| 45 | public function setKitodoRole($kitodoRole) |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return string |
||
| 52 | */ |
||
| 53 | public function getAccessToGroups(): string |
||
| 54 | { |
||
| 55 | return $this->accessToGroups; |
||
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @param string $accessToGroups |
||
| 60 | */ |
||
| 61 | public function setAccessToGroups(string $accessToGroups): void |
||
| 64 | } |
||
| 65 | |||
| 66 | |||
| 68 | } |