Actions
Feature #18858
closedIntegrate possibility to define enabledControls in TCA
Start date:
2008-05-26
Due date:
% Done:
0%
Estimated time:
PHP Version:
5.2
Tags:
Complexity:
Sprint Focus:
Description
to override enabledControls it's only possible with a hook.
I would like to have the option to define them in TCA.
A possible way would be
'fieldname' => array(
'label' => '...',
'config' => array(
'type' => 'inline',
'foreign_table' => '...',
'appearance' => array(
'enabledControls' => array(
'new' => false,
'delete' => false,
...
),
),
),
),
(issue imported from #M8523)
Files
Updated by Oliver Hader over 16 years ago
The attached patch implements the new feature which is configurable like suggested in the initial description of this report. The text file has the accordant changes for the TYPO3 documentation (doc_core_api).
Actions