exclude¶
- exclude¶
- Path
$GLOBALS['TCA'][$table]['columns'][$field]
- Required
false
- Type
boolean
- Scope
Proc. / Display
If set, all backend users are prevented from editing the field unless they are members of a backend user group with this field added as an "Allowed Excludefield" (or "admin" user).
See Access lists for more about permissions.
Example¶
Simple input field¶

EXT:styleguide/Configuration/TCA/tx_styleguide_elements_basic.php¶
'columns' => [
'input_1' => [
'l10n_mode' => 'prefixLangTitle',
'exclude' => 1,
'label' => 'input_1 description',
'description' => 'field description',
'config' => [
'type' => 'input',
'behaviour' => [
'allowLanguageSynchronization' => true,
],
],
],
]