‪TYPO3CMS  ‪main
BackendUserGroupType.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
25 {
26  case EDITOR = 'Editor';
27  case ADVANCED_EDITOR = 'Advanced Editor';
28  case ALL = 'Both';
29  case NONE = 'None';
30 
34  public function getAllUserGroupTypes(): array
35  {
36  $groups = [];
37  foreach (self::cases() as $group) {
38  $groups[] = $group->value;
39  }
40 
41  return $groups;
42  }
43 
49  public function getActualUserGroupTypes(): array
50  {
51  $allGroups = self::cases();
52  $specificUserGroups = [];
53  foreach ($allGroups as $specificGroup) {
54  if (in_array($specificGroup->name, ['ALL', 'NONE'], true)) {
55  continue;
56  }
57 
58  $specificUserGroups[$specificGroup->name] = $specificGroup->value;
59  }
60 
61  return $specificUserGroups;
62  }
63 }
‪TYPO3\CMS\Install\Command
Definition: BackendUserGroupType.php:18
‪TYPO3\CMS\Install\Command\BackendUserGroupType
‪BackendUserGroupType
Definition: BackendUserGroupType.php:25