TYPO3 Configuration Basics¶
Just in case you are not familiar with how to configure TYPO3, we will give you a very brief introduction. Otherwise, you can safely skip this part and continue reading Configuration Concepts.
We only cover configuration methods that are used to configure rte_ckeditor
.
Page TSconfig¶
We recommend you to put all configurations for the preset in the YAML configuration. However, it is still possible to override these settings through the page TSconfig.
You can find a list of configuration properties in the Page TSconfig reference, chapter RTE.
Relevant Settings for rte_ckeditor
¶
Page TSconfig can be used to change:
Default preset:
RTE.default.preset = full
Override for one field (
RTE.config.[tableName].[fieldName].preset
):RTE.config.tt_content.bodytext.preset = myCustomPreset RTE.config.tx_news_domain_model_news.bodytext.preset = minimal
Override for one field defined in flexform (
RTE.config.[tableName].[flexForm.field.name].preset
):RTE.config.tt_content.settings.notifications.emailText.preset = myCustomPreset
Override for one field, if type matches (
RTE.config.[tableName].[fieldName].types.[type].preset
):RTE.config.tt_content.bodytext.types.textmedia.preset = minimal
How to change values¶
See the Page TSconfig reference, chapter Setting Page TSconfig. This chapter also expains how to verify the settings.
Global Configuration¶
Global Configuration is a system-wide general configuration.
Relevant Settings for rte_ckeditor
¶
The setting $GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']
is used to configure
the available presets for rich text editing.
By default, the presets "minimal", "default" and "full" are defined.
If you add a new preset, you must add it to this array.
How to change values¶
Usually, Global Configuration can be configured in the backend in Admin Tools > Settings > Configure Installation-Wide Options.
However, the settings relevant for rich text editing, $GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']
cannot be configured in the backend.
You must either configure this in:
The file
%config-dir%/system/additional.php
Or in an extension in the file
EXT:<extkey>/ext_localconf.php
if (empty($GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['myCustomPreset'])) {
$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['myCustomPreset'] = 'EXT:<extkey>/Configuration/RTE/MyCustomPreset.yaml';
}
YAML¶
Most of the configuration of rte_ckeditor
will be done in a YAML file.
Relevant Settings for rte_ckeditor
¶
How to change values¶
This is done directly in the file. The YAML file should be included in a sitepackage extension, see Use a Sitepackage extension.