‪TYPO3CMS  10.4
Classes.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 return [
6  \TYPO3\CMS\Beuser\Domain\Model\BackendUser::class => [
7  'tableName' => 'be_users',
8  'properties' => [
9  'allowedLanguages' => [
10  'fieldName' => 'allowed_languages'
11  ],
12  'fileMountPoints' => [
13  'fieldName' => 'file_mountpoints'
14  ],
15  'dbMountPoints' => [
16  'fieldName' => 'db_mountpoints'
17  ],
18  'backendUserGroups' => [
19  'fieldName' => 'usergroup'
20  ],
21  ]
22  ],
23  \TYPO3\CMS\Beuser\Domain\Model\BackendUserGroup::class => [
24  'tableName' => 'be_groups',
25  'properties' => [
26  'subGroups' => [
27  'fieldName' => 'subgroup'
28  ],
29  ]
30  ],
31 ];