forked from xperseguers/t3ext-direct_mail_userfunc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_localconf.php
26 lines (24 loc) · 1.07 KB
/
ext_localconf.php
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
<?php
defined('TYPO3_MODE') || die();
(static function () {
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1535016737] = [
'nodeName' => 'checkUserfuncControl',
'priority' => 30,
'class' => \Causal\DirectMailUserfunc\FormEngine\FieldControl\CheckUserfuncControl::class
];
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1535361874] = [
'nodeName' => 'invokeUserJsControl',
'priority' => 30,
'class' => \Causal\DirectMailUserfunc\FormEngine\FieldControl\InvokeUserJsControl::class
];
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1597059292] = [
'nodeName' => 'providerSelector',
'priority' => '70',
'class' => \Causal\DirectMailUserfunc\FormEngine\FieldWizard\ProviderSelector::class
];
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1597061623] = [
'nodeName' => 'jsProviderWizard',
'priority' => '70',
'class' => \Causal\DirectMailUserfunc\FormEngine\FieldWizard\JsProviderWizard::class
];
})();