Simple text area
EXT:styleguide/Configuration/TCA/tx_styleguide_elements_basic.php
[
'columns' => [
'text_4' => [
'label' => 'text_4',
'description' => 'cols=20, rows=2',
'config' => [
'type' => 'text',
'cols' => 20,
'rows' => 2,
],
],
],
]
Rich text editor field
EXT:styleguide/Configuration/TCA/tx_styleguide_elements_rte.php
[
'columns' => [
'rte_1' => [
'label' => 'rte_1 description',
'description' => 'field description',
'config' => [
'type' => 'text',
'enableRichtext' => true,
],
],
],
]