‪TYPO3CMS  11.5
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  'groupName' => 'content',
12  'title' => 'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note',
13  'typeicon_classes' => [
14  'default' => 'mimetypes-x-sys_note',
15  ],
16  'sortby' => 'sorting',
17  'searchFields' => 'subject,message',
18  ],
19  'columns' => [
20  'category' => [
21  'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.category',
22  'config' => [
23  'type' => 'select',
24  'renderType' => 'selectSingle',
25  'items' => [
26  ['', '0', 'sysnote-type-0'],
27  ['LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.category.I.1', '1', 'sysnote-type-1'],
28  ['LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.category.I.3', '3', 'sysnote-type-3'],
29  ['LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.category.I.4', '4', 'sysnote-type-4'],
30  ['LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.category.I.2', '2', 'sysnote-type-2'],
31  ],
32  'default' => 0,
33  'fieldWizard' => [
34  'selectIcons' => [
35  'disabled' => false,
36  ],
37  ],
38  ],
39  ],
40  'subject' => [
41  'label' => 'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.subject',
42  'config' => [
43  'type' => 'input',
44  'size' => 40,
45  'max' => 255,
46  ],
47  ],
48  'message' => [
49  'label' => 'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.message',
50  'config' => [
51  'type' => 'text',
52  'cols' => 40,
53  'rows' => 15,
54  ],
55  ],
56  'personal' => [
57  'label' => 'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.personal',
58  'config' => [
59  'type' => 'check',
60  'renderType' => 'checkboxToggle',
61  ],
62  ],
63  'position' => [
64  'label' => 'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.position',
65  'config' => [
66  'type' => 'select',
67  'renderType' => 'selectSingle',
68  'items' => [
69  [
70  'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.position.top',
72  ],
73  [
74  'LLL:EXT:sys_note/Resources/Private/Language/locallang_tca.xlf:sys_note.position.bottom',
76  ],
77  ],
79  'fieldWizard' => [
80  'selectIcons' => [
81  'disabled' => false,
82  ],
83  ],
84  ],
85  ],
86  ],
87  'types' => [
88  '0' => ['showitem' => '
89  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
90  category, subject,message,position,
91  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access,
92  personal,
93  --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended,
94  '],
95  ],
96 ];
‪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