ds-site/ext_localconf.php
2024-02-08 08:04:56 +01:00

29 lines
756 B
PHP

<?php
declare(strict_types=1);
use TYPO3\CMS\Core\Utility\ArrayUtility;
(static function (string $extKey) {
ArrayUtility::mergeRecursiveWithOverrule($GLOBALS['TYPO3_CONF_VARS'], [
'BE' => [
'stylesheets' => [
$extKey => 'EXT:' . $extKey . '/Resources/Public/Backend/Css/',
],
],
'RTE' => [
'Presets' => [
'default' => 'EXT:ds_site/Configuration/RTE/Default.yaml',
],
],
'SYS' => [
'fluid' => [
'namespaces' => [
'f' => [
99 => 'DanielSiepmann\\DsSite\\ViewHelpers',
],
],
],
],
]);
})('ds_site');