我可以扩展TypoLink生成函数,即每次生成TypoLink时,它都会检查特定的targetpId,然后将当前页面的ID附加为GEt参数。例如:
When a Link on the page with ID 5 targets the page with the ID 19 then add ?ref=5 to the link
我目前不知道从哪里开始,我可以尝试重写哪种类/方法以包含这种行为。
答案 0 :(得分:1)
我不了解TYPO3 9.5,但我们在8.7中做到了。 这是我们使用的扩展类的摘要:
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][TYPO3\CMS\Frontend\Page\PageRepository::class] = array(
'className' => Vendor\Extension\Page\PageRepository::class
);
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::class] = array(
'className' => Vendor\Extension\ContentObject\ContentObjectRenderer::class
);
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][TYPO3\CMS\Core\DataHandling\DataHandler::class] = array(
'className' => Vendor\Extension\DataHandling\DataHandler::class
);
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][TYPO3\CMS\Frontend\Typolink\PageLinkBuilder::class] = array(
'className' => Vendor\Extension\Typolink\PageLinkBuilder::class
);
这并不是您要搜索的内容,而是一种很好的入门方法。