‪TYPO3CMS  10.4
sys_workspace_stage.php
Go to the documentation of this file.
1 <?php
2 
3 return [
4  'ctrl' => [
5  'label' => 'title',
6  'tstamp' => 'tstamp',
7  'sortby' => 'sorting',
8  'title' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage',
9  'adminOnly' => true,
10  'rootLevel' => 1,
11  'hideTable' => true,
12  'delete' => 'deleted',
13  'typeicon_classes' => [
14  'default' => 'mimetypes-x-sys_workspace'
15  ],
16  'versioningWS_alwaysAllowLiveEdit' => true
17  ],
18  'columns' => [
19  'title' => [
20  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.title',
21  'config' => [
22  'type' => 'input',
23  'size' => 20,
24  'max' => 30,
25  'eval' => 'required,trim'
26  ]
27  ],
28  'responsible_persons' => [
29  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.responsible_persons',
30  'config' => [
31  'type' => 'group',
32  'internal_type' => 'db',
33  'allowed' => 'be_users,be_groups',
34  'prepend_tname' => true,
35  'size' => 3,
36  'maxitems' => 100,
37  'autoSizeMax' => 20,
38  ]
39  ],
40  'default_mailcomment' => [
41  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.default_mailcomment',
42  'config' => [
43  'type' => 'text',
44  'rows' => 5,
45  'cols' => 30
46  ]
47  ],
48  'parentid' => [
49  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.parentid',
50  'config' => [
51  'type' => 'passthrough'
52  ]
53  ],
54  'parenttable' => [
55  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.parenttable',
56  'config' => [
57  'type' => 'passthrough'
58  ]
59  ],
60  'notification_defaults' => [
61  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.notification_defaults',
62  'config' => [
63  'type' => 'group',
64  'internal_type' => 'db',
65  'allowed' => 'be_users,be_groups',
66  'prepend_tname' => true,
67  'size' => 3,
68  'maxitems' => 100,
69  'autoSizeMax' => 20,
70  ]
71  ],
72  'allow_notificaton_settings' => [
73  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.settingsDialog',
74  'config' => [
75  'type' => 'check',
76  'items' => [
77  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.settingsDialog.showDialog', ''],
78  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.settingsDialog.changeablePreselection', ''],
79  ],
80  'default' => 3,
81  'cols' => 1,
82  ]
83  ],
84  'notification_preselection' => [
85  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection',
86  'config' => [
87  'type' => 'check',
88  'items' => [
89  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.owners', ''],
90  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.members', ''],
91  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.editors', ''],
92  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.responsiblePersons', ''],
93  ],
94  'default' => 8,
95  'cols' => 1,
96  ]
97  ]
98  ],
99  'palettes' => [
100  'stage' => [
101  'showitem' => 'allow_notificaton_settings, notification_preselection,',
102  ]
103  ],
104  'types' => [
105  '0' => ['showitem' => '
106  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
107  title,responsible_persons,
108  --div--;LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:tabs.notification_settings,
109  --palette--;;stage, notification_defaults, default_mailcomment,
110  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended,
111  ']
112  ]
113 ];