richtextConfiguration¶
- richtextConfiguration¶
- Path
$GLOBALS['TCA'][$table]['columns'][$field]['config']
- Type
string (keyword)
- Scope
Display / Proc.
- RenderType
The value is a key in
$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']
array and specifies the YAML configuration source field used for that RTE field. It does not make sense without having property enableRichtext set to true.Extension
rte_ckeditor
registers three presets:default
,minimal
andfull
and points to YAML files with configuration details.Integrators may override for instance the
default
key to point to an own YAML file which will affect all core backend RTE instances to use that configuration.If this property is not specified for an RTE field, the system will fall back to the
default
configuration.
Examples¶
RTE with minimal configuration¶

EXT:styleguide/Configuration/TCA/tx_styleguide_elements_rte.php¶
[
'columns' => [
'rte_4' => [
'label' => 'rte_4 richtextConfiguration=minimal',
'config' => [
'type' => 'text',
'enableRichtext' => true,
'richtextConfiguration' => 'minimal',
],
],
],
]