‪TYPO3CMS  10.4
sys_note.php
Go to the documentation of this file.
1 <?php
2 
3 return [
4  'ctrl' => [
5  'label' => 'subject',
6  'tstamp' => 'tstamp',
7  'crdate' => 'crdate',
8  'cruser_id' => 'cruser',
9  'prependAtCopy' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.prependAtCopy',
10  'delete' => 'deleted',
11  'title' => 'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note',
12  'typeicon_classes' => [
13  'default' => 'mimetypes-x-sys_note'
14  ],
15  'sortby' => 'sorting',
16  'searchFields' => 'subject,message'
17  ],
18  'columns' => [
19  'category' => [
20  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.category',
21  'config' => [
22  'type' => 'select',
23  'renderType' => 'selectSingle',
24  'items' => [
25  ['', '0', 'sysnote-type-0'],
26  ['LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.category.I.1', '1', 'sysnote-type-1'],
27  ['LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.category.I.3', '3', 'sysnote-type-3'],
28  ['LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.category.I.4', '4', 'sysnote-type-4'],
29  ['LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.category.I.2', '2', 'sysnote-type-2']
30  ],
31  'default' => 0,
32  'fieldWizard' => [
33  'selectIcons' => [
34  'disabled' => false,
35  ],
36  ],
37  ]
38  ],
39  'subject' => [
40  'label' => 'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.subject',
41  'config' => [
42  'type' => 'input',
43  'size' => 40,
44  'max' => 255
45  ]
46  ],
47  'message' => [
48  'label' => 'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.message',
49  'config' => [
50  'type' => 'text',
51  'cols' => 40,
52  'rows' => 15
53  ]
54  ],
55  'personal' => [
56  'label' => 'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.personal',
57  'config' => [
58  'type' => 'check',
59  'renderType' => 'checkboxToggle',
60  'items' => [
61  [
62  0 => '',
63  1 => '',
64  ]
65  ],
66  ]
67  ],
68  'position' => [
69  'label' => 'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.position',
70  'config' => [
71  'type' => 'select',
72  'renderType' => 'selectSingle',
73  'items' => [
74  [
75  'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.position.top',
77  ],
78  [
79  'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.position.bottom',
81  ],
82  ],
84  'fieldWizard' => [
85  'selectIcons' => [
86  'disabled' => false,
87  ],
88  ],
89  ]
90  ]
91  ],
92  'types' => [
93  '0' => ['showitem' => '
94  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
95  category, subject,message,position,
96  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access,
97  personal,
98  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended,
99  ']
100  ]
101 ];
‪TYPO3\CMS\SysNote\Domain\Repository\SysNoteRepository\SYS_NOTE_POSITION_BOTTOM
‪const SYS_NOTE_POSITION_BOTTOM
Definition: SysNoteRepository.php:31
‪TYPO3\CMS\SysNote\Domain\Repository\SysNoteRepository\SYS_NOTE_POSITION_TOP
‪const SYS_NOTE_POSITION_TOP
Definition: SysNoteRepository.php:32