-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_localconf.php
37 lines (34 loc) · 1.27 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
30
31
32
33
34
35
36
37
<?php
defined('TYPO3') or die('Access denied.');
/***************
* Add default RTE configuration
*/
$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['skombase'] = 'EXT:skombase/Configuration/RTE/Default.yaml';
/**********
* Backend Logos
*/
$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['backend']['loginLogo'] = 'EXT:skombase/Resources/Public/Images/Logo_machwerk.svg';
$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['backend']['backendLogo'] = 'EXT:skombase/Resources/Public/Images/Logo_machwerk_klein.svg';
// Register custom EXT:form configuration
if (\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::isLoaded('form')) {
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScriptSetup(trim('
module.tx_form {
settings {
yamlConfigurations {
210 = EXT:skombase/Configuration/Form/Setup.yaml
}
}
}
plugin.tx_form {
settings {
yamlConfigurations {
210 = EXT:skombase/Configuration/Form/Setup.yaml
}
}
}
'));
}
/***************
* PageTS
*/
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:skombase/Configuration/TsConfig/Page/All.tsconfig">');