‪TYPO3CMS  11.5
AfterGroupsResolvedEvent.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 
24 {
25  private string ‪$sourceDatabaseTable;
26  private array ‪$groups;
27  private array ‪$originalGroupIds;
28  private array ‪$userData;
29 
31  {
32  $this->sourceDatabaseTable = ‪$sourceDatabaseTable;
33  $this->groups = ‪$groups;
34  $this->originalGroupIds = ‪$originalGroupIds;
35  $this->userData = ‪$userData;
36  }
37 
41  public function ‪getSourceDatabaseTable(): string
42  {
44  }
45 
53  public function ‪getGroups(): array
54  {
55  return ‪$this->groups;
56  }
57 
61  public function ‪setGroups(array ‪$groups): void
62  {
63  $this->groups = ‪$groups;
64  }
65 
69  public function ‪getOriginalGroupIds(): array
70  {
72  }
73 
77  public function ‪getUserData(): array
78  {
79  return ‪$this->userData;
80  }
81 }
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent\getSourceDatabaseTable
‪string getSourceDatabaseTable()
Definition: AfterGroupsResolvedEvent.php:41
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent\$sourceDatabaseTable
‪string $sourceDatabaseTable
Definition: AfterGroupsResolvedEvent.php:25
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent\setGroups
‪setGroups(array $groups)
Definition: AfterGroupsResolvedEvent.php:61
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent\getOriginalGroupIds
‪getOriginalGroupIds()
Definition: AfterGroupsResolvedEvent.php:69
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent\$originalGroupIds
‪array $originalGroupIds
Definition: AfterGroupsResolvedEvent.php:27
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent\__construct
‪__construct(string $sourceDatabaseTable, array $groups, array $originalGroupIds, array $userData)
Definition: AfterGroupsResolvedEvent.php:30
‪TYPO3\CMS\Core\Authentication\Event
Definition: AfterGroupsResolvedEvent.php:18
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent
Definition: AfterGroupsResolvedEvent.php:24
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent\getGroups
‪getGroups()
Definition: AfterGroupsResolvedEvent.php:53
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent\$groups
‪array $groups
Definition: AfterGroupsResolvedEvent.php:26
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent\getUserData
‪getUserData()
Definition: AfterGroupsResolvedEvent.php:77
‪TYPO3\CMS\Core\Authentication\Event\AfterGroupsResolvedEvent\$userData
‪array $userData
Definition: AfterGroupsResolvedEvent.php:28