subtypes_excludelist¶
-
subtypes_excludelist
¶ -
- Type
- array
- Path
- $GLOBALS['TCA'][$table]['types'][$type]
See property subtype_value_field.
"[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
:
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']
['example_registration'] = 'recursive,pages';
Copied!