1 .. include:: ../../Includes.txt
3 =========================================================================
4 Deprecation: #79341 - TCA richtext configuration in defaultExtras dropped
5 =========================================================================
12 Enabling richtext rendering for fields in the Backend record editor has been simplified.
14 In the past, a typical :php:`TCA` configuration of a richtext field looked like:
22 'defaultExtras' => 'richtext:rte_transform',
26 The :php:`defaultExtras` is obsolete and substituted with :php:`enableRichtext` within the :php:`config` section:
33 'enableRichtext' => true,
39 If the RTE was enabled for a specific type only, it looked like this:
51 'columnsOverrides' => [
53 'defaultExtras' => 'richtext:rte_transform',
72 'columnsOverrides' => [
75 'enableRichtext' => true,
86 Using defaultExtras to enable richtext editor will stop working in TYPO3 v9. An automatic :php:`TCA` migration
87 transfers to the new syntax in TYPO3 v8 and logs deprecations.
90 Affected Installations
91 ======================
93 All installations using :php:`defaultExtras` for richtext configuration.
99 Remove the defaultExtras line and set :php:`'enableRichtext' => true,` within the config section of the field.
100 This is allowed in :php:`columnsOverrides` for specific record types, too.
102 .. index:: Backend, FlexForm, RTE, TCA