Attention
TYPO3 v12 has reached end-of-life as of April 30th 2026 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v12 here: TYPO3 ELTS.
BrokenLinkAnalysisEvent
The PSR-14 event
\TYPO3\
can be used to get information about broken links set in the
rich text editor (RTE).
The procedure for marking the broken links in the RTE is as follow:
- The RTE content is fetched from the database. Before it is displayed in the edit form, RTE transformations are performed.
- The transformation function parses the text and detects links.
- For each link, a new PSR-14 event is dispatched.
- If a listener is attached, it may set the link as broken and will set the link as "checked".
- If a link is detected as broken, RTE will mark it as broken.
This functionality is implemented in the system extension linkvalidator. Other extensions can use the event to override the default behaviour.
Example
Note
Currently, we do not have an example for this event. If you can provide a useful one, please open an issue with your code snippets or a pull request.