‪TYPO3CMS  11.5
tx_impexp_presets.php
Go to the documentation of this file.
1 <?php
2 
3 return [
4  'ctrl' => [
5  'title' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:tx_impexp_presets',
6  'label' => 'title',
7  'default_sortby' => 'title',
8  'tstamp' => 'tstamp',
9  'crdate' => 'crdate',
10  'cruser_id' => 'user_uid',
11  'typeicon_classes' => [
12  'default' => 'actions-cog',
13  ],
14  'hideTable' => true,
15  'rootLevel' => -1,
16  ],
17  'columns' => [
18  'title' => [
19  'label' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:title',
20  'config' => [
21  'type' => 'passthrough',
22  ],
23  ],
24  'public' => [
25  'label' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:public',
26  'config' => [
27  'type' => 'passthrough',
28  ],
29  ],
30  'user_uid' => [
31  'label' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:user_uid',
32  'config' => [
33  'type' => 'passthrough',
34  ],
35  ],
36  'item_uid' => [
37  'label' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:item_uid',
38  'config' => [
39  'type' => 'passthrough',
40  ],
41  ],
42  'preset_data' => [
43  'label' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:preset_data',
44  'config' => [
45  'type' => 'passthrough',
46  ],
47  ],
48  ],
49  'types' => [
50  0 => [
51  'showitem' => 'title, public, user_uid, item_uid, preset_data',
52  ],
53  ],
54 ];