‪TYPO3CMS  10.4
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  'delete' => 'deleted',
15  'enablecolumns' => [
16  'disabled' => 'hidden'
17  ],
18  'typeicon_classes' => [
19  'default' => 'mimetypes-x-sys_filemounts'
20  ],
21  'useColumnsForDefaultValues' => 'path,base',
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  'eval' => 'required,trim'
33  ]
34  ],
35  'hidden' => [
36  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.enabled',
37  'config' => [
38  'type' => 'check',
39  'renderType' => 'checkboxToggle',
40  'items' => [
41  [
42  0 => '',
43  1 => '',
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  'base' => [
59  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.baseStorage',
60  'onChange' => 'reload',
61  'config' => [
62  'type' => 'select',
63  'renderType' => 'selectSingle',
64  'foreign_table' => 'sys_file_storage',
65  'allowNonIdValues' => true,
66  'items' => [
67  ['', 0]
68  ],
69  'size' => 1,
70  'maxitems' => 1,
71  'eval' => 'required',
72  'range' => [
73  'lower' => 1,
74  ]
75  ]
76  ],
77  'path' => [
78  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.folder',
79  'displayCond' => 'FIELD:base:>:0',
80  'config' => [
81  'type' => 'select',
82  'renderType' => 'selectSingle',
83  'items' => [],
84  'itemsProcFunc' => 'TYPO3\\CMS\\Core\\Resource\\Service\\UserFileMountService->renderTceformsSelectDropdown',
85  ]
86  ],
87  'read_only' => [
88  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_tca.xlf:sys_filemounts.read_only',
89  'config' => [
90  'type' => 'check',
91  'renderType' => 'checkboxToggle',
92  'items' => [
93  [
94  0 => '',
95  1 => '',
96  ]
97  ],
98  ]
99  ],
100  ],
101  'types' => [
102  '0' => ['showitem' => '
103  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
104  title,base, path,read_only,
105  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access,
106  hidden,
107  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:notes,
108  description,
109  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended,
110  ']
111  ],
112 ];