forked from georgringer/t3monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_localconf.php
19 lines (16 loc) · 879 Bytes
/
ext_localconf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
defined('TYPO3_MODE') || die('Access denied.');
call_user_func(
function ($extKey) {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerTypeConverter(\T3Monitor\T3monitoring\Domain\TypeConverter\ClientFilterDemandConverter::class);
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][\TYPO3\CMS\Extbase\Persistence\Generic\Storage\Typo3DbBackend::class]
= array(
'className' => \T3Monitor\T3monitoring\Xclass\Typo3DbBackendXclassed::class
);
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['extbase']['commandControllers'][$extKey]
= \T3Monitor\T3monitoring\Command\MonitoringCommandController::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processDatamapClass'][$extKey]
= \T3Monitor\T3monitoring\Hooks\DataHandlerHook::class;
},
$_EXTKEY
);