subtypes_excludelist

subtypes_excludelist
Type
array
Path
$GLOBALS['TCA'][$table]['types'][$type]

See property subtype_value_field.

Syntax
"[field value]" => "[comma-separated list of fields (from the main types-config) which are removed]"
Copied!

Examples

Remove fields for a certain subtype

Remove fields recursive and pages from the subtype example_registration:

EXT:my_extension/Configuration/TCA/Overrides/tt_content.php (Excerpt)
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']
    ['example_registration'] = 'recursive,pages';
Copied!