‪TYPO3CMS  11.5
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  'allowed' => 'be_users,be_groups',
33  'prepend_tname' => true,
34  'size' => 3,
35  'maxitems' => 100,
36  'autoSizeMax' => 20,
37  ],
38  ],
39  'default_mailcomment' => [
40  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.default_mailcomment',
41  'config' => [
42  'type' => 'text',
43  'rows' => 5,
44  'cols' => 30,
45  ],
46  ],
47  'parentid' => [
48  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.parentid',
49  'config' => [
50  'type' => 'passthrough',
51  ],
52  ],
53  'parenttable' => [
54  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.parenttable',
55  'config' => [
56  'type' => 'passthrough',
57  ],
58  ],
59  'notification_defaults' => [
60  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.notification_defaults',
61  'config' => [
62  'type' => 'group',
63  'allowed' => 'be_users,be_groups',
64  'prepend_tname' => true,
65  'size' => 3,
66  'maxitems' => 100,
67  'autoSizeMax' => 20,
68  ],
69  ],
70  'allow_notificaton_settings' => [
71  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.settingsDialog',
72  'config' => [
73  'type' => 'check',
74  'items' => [
75  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.settingsDialog.showDialog'],
76  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.settingsDialog.changeablePreselection'],
77  ],
78  'default' => 3,
79  'cols' => 1,
80  ],
81  ],
82  'notification_preselection' => [
83  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection',
84  'config' => [
85  'type' => 'check',
86  'items' => [
87  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.owners'],
88  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.members'],
89  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.editors'],
90  ['LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.responsiblePersons'],
91  ],
92  'default' => 8,
93  'cols' => 1,
94  ],
95  ],
96  ],
97  'palettes' => [
98  'stage' => [
99  'showitem' => 'allow_notificaton_settings, notification_preselection,',
100  ],
101  ],
102  'types' => [
103  '0' => ['showitem' => '
104  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
105  title,responsible_persons,
106  --div--;LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:tabs.notification_settings,
107  --palette--;;stage, notification_defaults, default_mailcomment,
108  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended,
109  '],
110  ],
111 ];