TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,33 @@
.. include:: /Includes.rst.txt
.. _feature-79341:
==============================================================
Feature: #79341 - TCA richtext configuration in config section
==============================================================
See :issue:`79341`
Description
===========
A new config setting `enableRichtext` has been introduced. It enables richtext editing on the text field and replaces the old setting `defaultExtras`.
Impact
======
Setting `enableRichtext` will result in the text field being rendered with a richtext editor. Config example:
.. code-block:: php
'columns' => [
'content' => [
'config' => [
'type' => 'text',
'enableRichtext' => true,
],
],
];
.. index:: Backend, FlexForm, RTE, TCA