‪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\Extbase\Domain\Model\FileMount::class => [
7  'tableName' => 'sys_filemounts',
8  'properties' => [
9  'title' => [
10  'fieldName' => 'title'
11  ],
12  'path' => [
13  'fieldName' => 'path'
14  ],
15  'isAbsolutePath' => [
16  'fieldName' => 'base'
17  ],
18  ],
19  ],
20  \TYPO3\CMS\Extbase\Domain\Model\FileReference::class => [
21  'tableName' => 'sys_file_reference',
22  ],
23  \TYPO3\CMS\Extbase\Domain\Model\File::class => [
24  'tableName' => 'sys_file',
25  ],
26  \TYPO3\CMS\Extbase\Domain\Model\BackendUser::class => [
27  'tableName' => 'be_users',
28  'properties' => [
29  'userName' => [
30  'fieldName' => 'username'
31  ],
32  'isAdministrator' => [
33  'fieldName' => 'admin'
34  ],
35  'isDisabled' => [
36  'fieldName' => 'disable'
37  ],
38  'realName' => [
39  'fieldName' => 'realName'
40  ],
41  'startDateAndTime' => [
42  'fieldName' => 'starttime'
43  ],
44  'endDateAndTime' => [
45  'fieldName' => 'endtime'
46  ],
47  'ipLockIsDisabled' => [
48  'fieldName' => 'disableIPlock'
49  ],
50  'lastLoginDateAndTime' => [
51  'fieldName' => 'lastlogin'
52  ],
53  ],
54  ],
55  \TYPO3\CMS\Extbase\Domain\Model\BackendUserGroup::class => [
56  'tableName' => 'be_groups',
57  'properties' => [
58  'subGroups' => [
59  'fieldName' => 'subgroup'
60  ],
61  'modules' => [
62  'fieldName' => 'groupMods'
63  ],
64  'tablesListening' => [
65  'fieldName' => 'tables_select'
66  ],
67  'tablesModify' => [
68  'fieldName' => 'tables_modify'
69  ],
70  'pageTypes' => [
71  'fieldName' => 'pagetypes_select'
72  ],
73  'allowedExcludeFields' => [
74  'fieldName' => 'non_exclude_fields'
75  ],
76  'explicitlyAllowAndDeny' => [
77  'fieldName' => 'explicit_allowdeny'
78  ],
79  'allowedLanguages' => [
80  'fieldName' => 'allowed_languages'
81  ],
82  'workspacePermission' => [
83  'fieldName' => 'workspace_perms'
84  ],
85  'databaseMounts' => [
86  'fieldName' => 'db_mountpoints'
87  ],
88  'fileOperationPermissions' => [
89  'fieldName' => 'file_permissions'
90  ],
91  'lockToDomain' => [
92  'fieldName' => 'lockToDomain'
93  ],
94  'tsConfig' => [
95  'fieldName' => 'TSconfig'
96  ],
97  ],
98  ],
99  \TYPO3\CMS\Extbase\Domain\Model\FrontendUser::class => [
100  'tableName' => 'fe_users',
101  'properties' => [
102  'lockToDomain' => [
103  'fieldName' => 'lockToDomain'
104  ],
105  ],
106  ],
107  \TYPO3\CMS\Extbase\Domain\Model\FrontendUserGroup::class => [
108  'tableName' => 'fe_groups',
109  'properties' => [
110  'lockToDomain' => [
111  'fieldName' => 'lockToDomain'
112  ],
113  ],
114  ],
115  \TYPO3\CMS\Extbase\Domain\Model\Category::class => [
116  'tableName' => 'sys_category',
117  ],
118 ];