description

New in version 11.3: The palettes description property has been added with TYPO3 v11.3.

description (palettes)
Path

$GLOBALS['TCA'][$table]['palettes']

Type

string

Allows to display a localized description text into the palette declaration. It will be displayed below the palette label.

This additional help text can be used to clarify some field usages directly in the UI.

Note

In contrast to the palette label, the description property can not be overwritten on a record type basis.

Example

../../_images/PaletteDescription.png

A palette with a description

EXT:styleguide/Configuration/TCA/tx_styleguide_palette.php
[
    'palettes' => [
        'palette_1' => [
            'label' => 'palette_1',
            'description' => 'palette description',
            'showitem' => 'palette_1_1, palette_1_3',
        ],
    ],
]