I need the same function like the Typo3 standard. There U can Choose a Link (external Site, internal Site, File, etc.)
How can I make this?
I need the same function like the Typo3 standard. There U can Choose a Link (external Site, internal Site, File, etc.)
How can I make this?
In TYPO3 8.x, this is very simple, just add
'renderType' => 'inputLink'
to yourinput
field.The TCA looks slightly different in the new version 7 of TYPO3:
Following will work for TYPO3 7.6.X
You can find the TCA for the TYPO3 backend in the files typo3/sysext/cms/tbl_tt_content.php and typo3/sysext/cms/tbl_cms.php. Here you find the header_link example.
Solution for TYPO3 6.1 and lower:
Solution for TYPO3 6.2.x - 7.6.x:
Solution for TYPO3 8.x: