Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v10 here: TYPO3 ELTS.
description
New in version 11.3
The palettes description property has been added with TYPO3 v11.3.
description
-
- Type
- string
- Path
- $GLOBALS['TCA'][$table]['palettes']
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
[
'palettes' => [
'palette_1' => [
'label' => 'palette_1',
'description' => 'palette description',
'showitem' => 'palette_1_1, palette_1_3',
],
],
]