TYPO3 CMS  TYPO3_7-6
backend_layout.php
Go to the documentation of this file.
1 <?php
2 return [
3  'ctrl' => [
4  'title' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout',
5  'label' => 'title',
6  'descriptionColumn' => 'description',
7  'tstamp' => 'tstamp',
8  'crdate' => 'crdate',
9  'cruser_id' => 'cruser_id',
10  'versioningWS' => true,
11  'origUid' => 't3_origuid',
12  'sortby' => 'sorting',
13  'delete' => 'deleted',
14  'enablecolumns' => [
15  'disabled' => 'hidden'
16  ],
17  'typeicon_classes' => [
18  'default' => 'mimetypes-x-backend_layout'
19  ],
20  'selicon_field' => 'icon',
21  'selicon_field_path' => 'uploads/media'
22  ],
23  'interface' => [
24  'showRecordFieldList' => 'title,config,description,hidden,icon'
25  ],
26  'columns' => [
27  'title' => [
28  'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.title',
29  'config' => [
30  'type' => 'input',
31  'size' => '25',
32  'max' => '255',
33  'eval' => 'required'
34  ]
35  ],
36  'description' => [
37  'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.description',
38  'config' => [
39  'type' => 'text',
40  'rows' => '5',
41  'cols' => '25'
42  ]
43  ],
44  'config' => [
45  'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.config',
46  'config' => [
47  'type' => 'text',
48  'rows' => '5',
49  'cols' => '25',
50  'wizards' => [
51  0 => [
52  'title' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.wizard',
53  'type' => 'popup',
54  'icon' => 'EXT:frontend/Resources/Public/Images/wizard_backend_layout.png',
55  'module' => [
56  'name' => 'wizard_backend_layout'
57  ],
58  'JSopenParams' => 'height=800,width=800,status=0,menubar=0,scrollbars=0'
59  ]
60  ]
61  ]
62  ],
63  'hidden' => [
64  'label' => 'LLL:EXT:lang/locallang_general.xlf:LGL.disable',
65  'exclude' => 1,
66  'config' => [
67  'type' => 'check',
68  'default' => '0'
69  ]
70  ],
71  'icon' => [
72  'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.icon',
73  'exclude' => 1,
74  'config' => [
75  'type' => 'group',
76  'internal_type' => 'file',
77  'allowed' => 'jpg,gif,png',
78  'uploadfolder' => 'uploads/media',
79  'show_thumbs' => 1,
80  'size' => 1,
81  'maxitems' => 1
82  ]
83  ]
84  ],
85  'types' => [
86  '1' => [
87  'showitem' => 'hidden, title, icon, description, config',
88  ],
89  ]
90 ];