Add Button to TCA fields
You will need your own extension or site distribution.
Add the button in your extension's TCA Overrides.
Add the button to tt_content header and subheader field
if(\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::isLoaded('sup_header')) {
$GLOBALS['TCA']['tt_content']['columns']['header']['config'] = array_merge_recursive(
$GLOBALS['TCA']['tt_content']['columns']['header']['config'],
[
'fieldControl' => [
'tx_supheader_control' => [
'renderType' => 'addIconTextField',
],
],
]
);
$GLOBALS['TCA']['tt_content']['columns']['subheader']['config'] = array_merge_recursive(
$GLOBALS['TCA']['tt_content']['columns']['subheader']['config'],
[
'fieldControl' => [
'tx_supheader_control' => [
'renderType' => 'addIconTextField',
],
],
]
);
}
Copied!