description

New in version 11.3

The palettes description property has been added with TYPO3 v11.3.

description
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.

Example

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',
        ],
    ],
]
Copied!