[TYPO3-dev] Customizing IRRE controls in BE: how to hide 'Create New' link?
Stephen Bungert
stephenbungert at yahoo.de
Thu Aug 16 11:14:25 CEST 2012
In your tca you can control what buttons appear like this:
'field_name' => array(
'config' => array(
'appearance' => array(
'enabledControls' => array(
'info' => false,
'new' => false,
'dragdrop' => false,
'sort' => false,
'hide' => false,
'delete' => false,
),
),
),
),
Just set the ones you want to see to true
More information about the TYPO3-dev
mailing list