-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathext_localconf.php
More file actions
23 lines (19 loc) · 966 Bytes
/
ext_localconf.php
File metadata and controls
23 lines (19 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
declare(strict_types=1);
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][\TYPO3\CMS\Core\DataHandling\DataHandler::class] = [
'className' => \WEBcoast\DotForms\DataHandling\DataHandler::class,
];
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['formDataGroup']['tcaDatabaseRecord'][\WEBcoast\DotForms\Form\FormDataProvider\DotFormsDataProvider::class] = [
'depends' => [
\TYPO3\CMS\Backend\Form\FormDataProvider\DatabaseEditRow::class
],
'before' => [
\TYPO3\CMS\Backend\Form\FormDataProvider\TcaRadioItems::class,
\TYPO3\CMS\Backend\Form\FormDataProvider\TcaCheckboxItems::class,
\TYPO3\CMS\Backend\Form\FormDataProvider\TcaGroup::class,
\TYPO3\CMS\Backend\Form\FormDataProvider\TcaSelectItems::class
]
];
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][\TYPO3\CMS\Core\Database\Schema\DefaultTcaSchema::class] = [
'className' => \WEBcoast\DotForms\Database\Schema\TcaSchemaOverride::class,
];