ModifyPageLinkConfigurationEvent
The PSR-14 event
\TYPO3\
is called after a page has been resolved, and includes arguments such as the
generated fragment and the to-be-used query parameters.
The page to be linked to can also be modified to link to a different page.
Example
EXT:my_extension/Classes/Frontend/EventListener/MyEventListener.php
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\Frontend\EventListener;
use TYPO3\CMS\Core\Attribute\AsEventListener;
use TYPO3\CMS\Frontend\Event\ModifyPageLinkConfigurationEvent;
#[AsEventListener(
identifier: 'my-extension/modify-page-link-configuration',
)]
final readonly class MyEventListener
{
public function __invoke(ModifyPageLinkConfigurationEvent $event): void
{
// Do your magic here
}
}
API
- class ModifyPageLinkConfigurationEvent
-
- Fully qualified name
-
\TYPO3\
CMS\ Frontend\ Event\ Modify Page Link Configuration Event
A generic PSR 14 Event to allow modifying the incoming (and resolved) page when building a "page link".
This event allows Event Listener to change the page to be linked to, or add/remove possible query parameters / fragments to be generated.