exclude¶
-
exclude
¶ -
- Type
- boolean
- Path
- $GLOBALS['TCA'][$table]['columns'][$field]
- Required
- false
- 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¶
[
'columns' => [
'input_2' => [
'label' => 'input_2 description',
'exclude' => true,
'config' => [
'type' => 'input',
],
],
],
]
Copied!