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.
typeicon_classes
typeicon_classes
-
- Type
- array
- Path
- $GLOBALS['TCA'][$table]['ctrl']
- Scope
- Display
Array of names to use for the records. The keys must correspond to the values found in the column referenced in the typeicon_column property. The values correspond to icons registered in the Icon API. For using and configuring
typeicon_
for custom page types, please see Create a new Page Type.classes
Examples
Example from the tt_
table:
'typeicon_classes' => [
'header' => 'mimetypes-x-content-header',
'default' => 'mimetypes-x-content-text',
...
],
Copied!