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

../_images/T3editor1.png

A t3editor with syntax highlighting for HTML and 7 rows.

Configured by the following TCA:

Configuration/TCA/tx_styleguide_elements_t3editor.php
'columns' => [
    't3editor_1' => [
        'exclude' => true,
        'label' => 't3editor_1 format=html, rows=7',
        'description' => 'field description',
        'config' => [
            'type' => 'text',
            'renderType' => 't3editor',
            'format' => 'html',
            'rows' => 7,
        ],
    ],
]