‪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\Belog\Domain\Model\LogEntry::class => [
7  'tableName' => 'sys_log',
8  'properties' => [
9  'backendUserUid' => [
10  'fieldName' => 'userid'
11  ],
12  'recordUid' => [
13  'fieldName' => 'recuid'
14  ],
15  'tableName' => [
16  'fieldName' => 'tablename'
17  ],
18  'recordPid' => [
19  'fieldName' => 'recpid'
20  ],
21  'detailsNumber' => [
22  'fieldName' => 'details_nr'
23  ],
24  'ip' => [
25  'fieldName' => 'IP'
26  ],
27  'workspaceUid' => [
28  'fieldName' => 'workspace'
29  ],
30  'newId' => [
31  'fieldName' => 'NEWid'
32  ],
33  ]
34  ],
35  \TYPO3\CMS\Belog\Domain\Model\Workspace::class => [
36  'tableName' => 'sys_workspace',
37  ],
38 ];