‪TYPO3CMS  ‪main
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  'required' => true,
26  'eval' => 'trim',
27  ],
28  ],
29  'responsible_persons' => [
30  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.responsible_persons',
31  'config' => [
32  'type' => 'group',
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  'notification_defaults' => [
55  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace_stage.notification_defaults',
56  'config' => [
57  'type' => 'group',
58  'allowed' => 'be_users,be_groups',
59  'prepend_tname' => true,
60  'size' => 3,
61  'maxitems' => 100,
62  'autoSizeMax' => 20,
63  ],
64  ],
65  'allow_notificaton_settings' => [
66  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.settingsDialog',
67  'config' => [
68  'type' => 'check',
69  'items' => [
70  ['label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.settingsDialog.showDialog'],
71  ['label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.settingsDialog.changeablePreselection'],
72  ],
73  'default' => 3,
74  'cols' => 1,
75  ],
76  ],
77  'notification_preselection' => [
78  'label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection',
79  'config' => [
80  'type' => 'check',
81  'items' => [
82  ['label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.owners'],
83  ['label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.members'],
84  ['label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.editors'],
85  ['label' => 'LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:sys_workspace.preselection.responsiblePersons'],
86  ],
87  'default' => 8,
88  'cols' => 1,
89  ],
90  ],
91  ],
92  'palettes' => [
93  'stage' => [
94  'showitem' => 'allow_notificaton_settings, notification_preselection,',
95  ],
96  ],
97  'types' => [
98  '0' => ['showitem' => '
99  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
100  title,responsible_persons,
101  --div--;LLL:EXT:workspaces/Resources/Private/Language/locallang_db.xlf:tabs.notification_settings,
102  --palette--;;stage, notification_defaults, default_mailcomment,
103  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended,
104  '],
105  ],
106 ];