.. include:: /Includes.rst.txt .. index:: Events; ModifyLinkExplanationEvent .. _ModifyLinkExplanationEvent: ========================== ModifyLinkExplanationEvent ========================== .. versionadded:: 12.0 This event serves as a more powerful and flexible alternative for the removed :php:`$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['linkHandler']` hook. While the removed hook effectively only allowed to modify the link explanation of TCA `link` fields in case the resolved link type did not already match one of those, implemented by TYPO3 itself, the new event allows to always modify the link explanation of any type. Additionally, this also allows to modify the `additionalAttributes`, displayed below the actual link explanation field. This is especially useful for extended link handler setups. To modify the link explanation, the following methods are available: - :php:`getLinkExplanation()`: Returns the current link explanation data - :php:`setLinkExplanation()`: Set the link explanation data - :php:`getLinkExplanationValue()`: Returns a specific link explanation value - :php:`setLinkExplanationValue()`: Sets a specific link explanation value The link explanation array usually contains the following values: - :php:`text` : The text to show in the link explanation field - :php:`icon`: The markup for the icon, displayed in front of the link explanation field - :php:`additionalAttributes`: The markup for additional attributes, displayed below the link explanation field The current context can be evaluated using the following methods: - :php:`getLinkData()`: Returns the resolved link data, such as the page uid - :php:`getLinkParts()`: Returns the resolved link parts, such as `url`, `target` and `additionalParams` - :php:`getElementData()`: Returns the full FormEngine `$data` array for the current element Example ======= Registration of the event listener in the extension's :file:`Services.yaml`: .. literalinclude:: _ModifyLinkExplanationEvent/_Services.yaml :language: yaml :caption: EXT:my_extension/Configuration/Services.yaml Read :ref:`how to configure dependency injection in extensions `. The corresponding event listener class: .. literalinclude:: _ModifyLinkExplanationEvent/_MyEventListener.php :language: php :caption: EXT:my_extension/Classes/Backend/EventListener/MyEventListener.php API === .. include:: /CodeSnippets/Events/Backend/ModifyLinkExplanationEvent.rst.txt