Project

General

Profile

Bug #84943

Updated by Jan Stockfisch almost 6 years ago

@TYPO3\CMS\RteCKEditor\Controller\BrowseLinksController@ uses @['richtext' => true]@ as it's entire tca field config. With this field config the default RTE config is always been loaded. Custom configuration, like defalt CSS classes, can only be achieved by overriding @$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['default']@. 

 For testing purposes I just build a small extension, which will override the richtext configuration via 'columnsOverrides' for the CType 'text'. Notice that this will have no effect if you have a PageTS config which sets @RTE.default.preset@ (just like EXT:bootstrap_package does). 
 Here is the link: https://github.com/KamiYang/foobaa

Back