ds-site/ext_localconf.php

30 lines
756 B
PHP
Raw Normal View History

2019-11-15 00:27:23 +01:00
<?php
2024-02-08 08:04:56 +01:00
declare(strict_types=1);
use TYPO3\CMS\Core\Utility\ArrayUtility;
(static function (string $extKey) {
ArrayUtility::mergeRecursiveWithOverrule($GLOBALS['TYPO3_CONF_VARS'], [
2024-02-05 14:59:20 +01:00
'BE' => [
'stylesheets' => [
$extKey => 'EXT:' . $extKey . '/Resources/Public/Backend/Css/',
],
],
'RTE' => [
'Presets' => [
'default' => 'EXT:ds_site/Configuration/RTE/Default.yaml',
],
],
2021-12-08 11:26:46 +01:00
'SYS' => [
'fluid' => [
'namespaces' => [
'f' => [
99 => 'DanielSiepmann\\DsSite\\ViewHelpers',
],
],
],
],
]);
})('ds_site');