-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_localconf.php
More file actions
44 lines (35 loc) · 1.55 KB
/
ext_localconf.php
File metadata and controls
44 lines (35 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
declare(strict_types=1);
use Remind\Extbase\Backend\Form\Container\FlexFormContainerContainer;
use Remind\Extbase\Backend\Form\Element\SelectMultipleSideBySideJsonElement;
use Remind\Extbase\Backend\Form\Element\ValueLabelPairsElement;
use Remind\Extbase\Backend\Form\FormDataProvider\UserItemProvider;
use Remind\Extbase\Routing\Aspect\FilterValueMapper;
use TYPO3\CMS\Backend\Form\Container\FlexFormContainerContainer as BaseFlexFormContainerContainer;
use TYPO3\CMS\Backend\Form\FormDataProvider\SiteResolving;
defined('TYPO3') || die('Access denied.');
(function (): void {
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['formDataGroup']['flexFormSegment'][UserItemProvider::class]
= [
'depends' => [
SiteResolving::class,
],
];
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1669984830]
= [
'class' => ValueLabelPairsElement::class,
'nodeName' => 'valueLabelPairs',
'priority' => 40,
];
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1694008464]
= [
'class' => SelectMultipleSideBySideJsonElement::class,
'nodeName' => 'selectMultipleSideBySideJson',
'priority' => 40,
];
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][BaseFlexFormContainerContainer::class]
= [
'className' => FlexFormContainerContainer::class,
];
$GLOBALS['TYPO3_CONF_VARS']['SYS']['routing']['aspects']['FilterValueMapper'] = FilterValueMapper::class;
})();