Deprecation: #83252 - link-tag syntax processsing
See forge#83252
Description
The old-fashioned way of storing links as <link>-tags in the database was migrated in TYPO3 v8, however, the code is still in place.
Using the following hooks is not encouraged:
$TYPO3_
CONF_ VARS ['SC_ OPTIONS'] ['t3lib/ class. t3lib_ parsehtml_ proc. php'] ['modify Params_ Links Rte_ Post Proc'] $TYPO3_
CONF_ VARS ['SC_ OPTIONS'] ['t3lib/ class. t3lib_ parsehtml_ proc. php'] ['modify Params_ Links Db_ Post Proc']
The following public methods in RteHtmlParser have been marked as deprecated:
TYPO3\
CMS\ Core\ Html\ Rte Html Parser->TS_ links_ rte () TYPO3\
CMS\ Core\ Html\ Rte Html Parser->transform Styled ATags ()
The second argument of the PHP method TYPO3\
has been marked
as deprecated.
Impact
Transforming any content with a <link>
tag will trigger deprecation warning. Additionally, calling one of the
deprecated methods or triggering any of the hooks within RteHtmlParser will trigger a deprecation warning.
Using the method TS_
with a second argument set will trigger a deprecation warning.
Affected Installations
Any installation which makes use of the legacy <link> syntax or hasn't fully migrated to TYPO3 v8 yet.
Migration
Migrate all content to proper anchor-tags, so the hooks are not necessary anymore.