-
Notifications
You must be signed in to change notification settings - Fork 2
/
ext_localconf.php
29 lines (23 loc) · 1.13 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
27
28
29
<?php
/**
* lokale Config laden.
*/
/*
* alle benötigten Klassen einbinden etc.
*/
if (!defined('TYPO3')) {
exit('Access denied.');
}
$_EXTKEY = 'mklib';
require_once \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY).'scheduler/ext_localconf.php';
require_once \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY).'srv/ext_localconf.php';
// das ist nur eine info für entwickler welcher basis exception code
// für diese extension verwendet wird. in diesem fall 400.
// also könnte ein valider exception code dieser extension 4001 sein
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF'][$_EXTKEY]['baseExceptionCode'] = 400;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tce']['formevals']['tx_mklib_tca_eval_priceDecimalSeperator'] =
'tx_mklib_tca_eval_priceDecimalSeperator';
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tce']['formevals']['tx_mklib_tca_eval_isoDate'] =
'tx_mklib_tca_eval_isoDate';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][\TYPO3\CMS\Frontend\Authentication\FrontendUserAuthentication::class] =
['className' => \DMK\Mklib\Frontend\Authentication\FrontendUserAuthentication::class];