‪TYPO3CMS  9.5
sys_history.php
Go to the documentation of this file.
1 <?php
2 return [
3  'ctrl' => [
4  'title' => 'LLL:EXT:core/Resources/Private/Language/locallang_tca.xlf:sys_history',
5  'label' => 'tablename',
6  'tstamp' => 'tstamp',
7  'adminOnly' => true,
8  'rootLevel' => 1,
9  'hideTable' => true,
10  'default_sortby' => 'uid DESC',
11  ],
12  'columns' => [
13  'history_data' => [
14  'label' => 'history_data',
15  'config' => [
16  'type' => 'input'
17  ]
18  ],
19  'recuid' => [
20  'label' => 'recuid',
21  'config' => [
22  'type' => 'input'
23  ]
24  ],
25  'tablename' => [
26  'label' => 'tablename',
27  'config' => [
28  'type' => 'input'
29  ]
30  ],
31  'tstamp' => [
32  'label' => 'tstamp',
33  'config' => [
34  'type' => 'input'
35  ]
36  ],
37  'snapshot' => [
38  'label' => 'snapshot',
39  'config' => [
40  'type' => 'input'
41  ]
42  ]
43  ],
44  'types' => [
45  '1' => [
46  'showitem' => 'history_data, recuid, tablename, tstamp, snapshot'
47  ]
48  ]
49 ];