security¶
-
security
¶ -
- Type
- array
- Path
- $GLOBALS['TCA'][$table]['ctrl']
- Scope
- Display
Array of sub-properties. This is used, for example, in the Core for the
sys_file
table:return [ 'ctrl' => [ // ... 'security' => [ 'ignoreWebMountRestriction' => true, 'ignoreRootLevelRestriction' => true, ], // ... ], ];
Copied!You can also use it in an override file:
$GLOBALS['TCA']['my_table']['ctrl']['security']['ignoreWebMountRestriction'] = true; $GLOBALS['TCA']['my_table']['ctrl']['security']['ignoreRootLevelRestriction'] = true;
Copied!- ignoreWebMountRestriction
- Allows users to access records that are not in their defined web-mount, thus bypassing this restriction.
- ignoreRootLevelRestriction
- Allows non-admin users to access records that on the root-level (page-id 0), thus bypassing this usual restriction.