Introduction¶
What does it do?¶
This system extension provides a backend editor with syntax highlighting.
The editor is used for TCA fields with type text
and renderType t3editor
and in the module Filelist.
Screenshots¶
Configured by the following TCA:
'columns' => [
't3editor_1' => [
'exclude' => true,
'label' => 't3editor_1 format=html, rows=7',
'description' => 'field description',
'config' => [
'type' => 'text',
'renderType' => 't3editor',
'format' => 'html',
'rows' => 7,
],
],
]