TYPO3 CMS  TYPO3_6-2
sys_history.php
Go to the documentation of this file.
1 <?php
2 return array(
3  'ctrl' => array(
4  'title' => 'LLL:EXT:lang/locallang_tca.xlf:sys_history',
5  'label' => 'tablename',
6  'tstamp' => 'tstamp',
7  'adminOnly' => TRUE,
8  'rootLevel' => TRUE,
9  'hideTable' => TRUE,
10  'default_sortby' => 'uid DESC',
11  ),
12  'columns' => array(
13  'sys_log_uid' => array(
14  'label' => 'sys_log_uid',
15  'config' => array(
16  'type' => 'input'
17  )
18  ),
19  'history_data' => array(
20  'label' => 'history_data',
21  'config' => array(
22  'type' => 'input'
23  )
24  ),
25  'fieldlist' => array(
26  'label' => 'fieldlist',
27  'config' => array(
28  'type' => 'input'
29  )
30  ),
31  'recuid' => array(
32  'label' => 'recuid',
33  'config' => array(
34  'type' => 'input'
35  )
36  ),
37  'tablename' => array(
38  'label' => 'tablename',
39  'config' => array(
40  'type' => 'input'
41  )
42  ),
43  'tstamp' => array(
44  'label' => 'tstamp',
45  'config' => array(
46  'type' => 'input'
47  )
48  ),
49  'history_files' => array(
50  'label' => 'history_files',
51  'config' => array(
52  'type' => 'input'
53  )
54  ),
55  'snapshot' => array(
56  'label' => 'snapshot',
57  'config' => array(
58  'type' => 'input'
59  )
60  )
61  ),
62  'types' => array(
63  '1' => array(
64  'showitem' => 'sys_log_uid, history_data, fieldlist, recuid, tablename, tstamp, history_files, snapshot'
65  )
66  )
67 );