Bug #81620
closedLinkhandler remove all attributes set in the link wizard and the template
0%
Description
My configuration
I am using version TYPO3 CMS 8.7.1 and the linkhandler from core.
I have a template like this:
<f:link.typolink parameter="{link}" class="btn more">Mehr erfahren</f:link.typolink>
I have the following pageTsConfig:
TCEMAIN { linkHandler { tx_news { handler = TYPO3\CMS\Recordlist\LinkHandler\RecordLinkHandler label = News configuration { table = tx_news_domain_model_news hidePageTree = 0 } scanAfter = page } } }
And this typoscript:
config { recordLinks { tx_news { typolink { parameter = {$id.newsDetailPid} additionalParams.data = field:uid additionalParams.wrap = &tx_news_pi1[news]=|&tx_news_pi1[action]=detail&tx_news_pi1[controller]=news useCacheHash = 1 } } } }
{$id.newsDetailPid} is set as 22.
The scenario
Now i create a link with the link wizard to a page (uid: 30) with some extra attributes set
t3://page?uid=30 _blank "btn special" Testtitle google=bad
and get this:
<a href="/index.php?id=1&google=bad" title="Testtitle" target="_blank" class="btn special more">Mehr erfahren</a>
Now i create a link with the link wizard to a news record (uid:1) with the same extra attributes set
t3://record?identifier=tx_news&uid=1 _blank "btn special" Testtitle google=bad
and get this:
<a href="/index.php?id=22&tx_news_pi1%5Bnews%5D=1&tx_news_pi1%5Baction%5D=detail&tx_news_pi1%5Bcontroller%5D=news&cHash=e68aca14db3f2e4bc194845e951acc11">Mehr erfahren</a>
The problem
If i use a link created with linkhandler all attributes get completly removed.
I think the problem is somewhere in the method typoLink in /typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php but i am not sure.
One way it works to add the classes - but it is not useful
To add the classes i have to set them in the `parameter` in the typoscript of the linkhandler.
But this is not what is needed, because there is no class for “link to news” but the tags may have classes like in the example.