‪TYPO3CMS  ‪main
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  'typeicon_classes' => [
11  'default' => 'actions-cog',
12  ],
13  'hideTable' => true,
14  'rootLevel' => -1,
15  ],
16  'columns' => [
17  'title' => [
18  'label' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:title',
19  'config' => [
20  'type' => 'passthrough',
21  ],
22  ],
23  'public' => [
24  'label' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:public',
25  'config' => [
26  'type' => 'passthrough',
27  ],
28  ],
29  'user_uid' => [
30  'label' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:user_uid',
31  'config' => [
32  'type' => 'passthrough',
33  ],
34  ],
35  'item_uid' => [
36  'label' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:item_uid',
37  'config' => [
38  'type' => 'passthrough',
39  ],
40  ],
41  'preset_data' => [
42  'label' => 'LLL:EXT:impexp/Resources/Private/Language/locallang_tca.xlf:preset_data',
43  'config' => [
44  'type' => 'passthrough',
45  ],
46  ],
47  ],
48  'types' => [
49  0 => [
50  'showitem' => 'title, public, user_uid, item_uid, preset_data',
51  ],
52  ],
53 ];