‪TYPO3CMS  ‪main
sys_filemounts.php
Go to the documentation of this file.
1 <?php
2 
3 return [
4  'ctrl' => [
5  'label' => 'title',
6  'descriptionColumn' => 'description',
7  'tstamp' => 'tstamp',
8  'sortby' => 'sorting',
9  'default_sortby' => 'title',
10  'prependAtCopy' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.prependAtCopy',
11  'title' => 'LLL:EXT:core/Resources/Private/Language/locallang_tca.xlf:sys_filemounts',
12  'adminOnly' => true,
13  'rootLevel' => 1,
14  'groupName' => 'backendaccess',
15  'delete' => 'deleted',
16  'enablecolumns' => [
17  'disabled' => 'hidden',
18  ],
19  'typeicon_classes' => [
20  'default' => 'mimetypes-x-sys_filemounts',
21  ],
22  'versioningWS_alwaysAllowLiveEdit' => true,
23  'searchFields' => 'title,path',
24  ],
25  'columns' => [
26  'title' => [
27  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_tca.xlf:sys_filemounts.title',
28  'config' => [
29  'type' => 'input',
30  'size' => 50,
31  'max' => 255,
32  'required' => true,
33  'eval' => 'trim',
34  ],
35  ],
36  'hidden' => [
37  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.enabled',
38  'config' => [
39  'type' => 'check',
40  'renderType' => 'checkboxToggle',
41  'items' => [
42  [
43  'label' => '',
44  'invertStateDisplay' => true,
45  ],
46  ],
47  ],
48  ],
49  'description' => [
50  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.description',
51  'config' => [
52  'type' => 'text',
53  'rows' => 5,
54  'cols' => 30,
55  'max' => 2000,
56  ],
57  ],
58  'identifier' => [
59  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_tca.xlf:sys_filemounts.identifier',
60  'config' => [
61  'type' => 'folder',
62  'required' => true,
63  'maxitems' => 1,
64  'size' => 1,
65  ],
66  ],
67  'read_only' => [
68  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_tca.xlf:sys_filemounts.read_only',
69  'config' => [
70  'type' => 'check',
71  'renderType' => 'checkboxToggle',
72  ],
73  ],
74  ],
75  'types' => [
76  '0' => ['showitem' => '
77  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
78  title, identifier, read_only,
79  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access,
80  hidden,
81  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:notes,
82  description,
83  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended,
84  '],
85  ],
86 ];