ModifyImageSourceCollectionEvent
New in version 13.0
This event serves as a drop-in replacement for the removed hook
$GLOBALS
.
The PSR-14 event
\TYPO3\
is being dispatched in Content
for each configured source
and allows to enrich the final
source collection result.
Example
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\Frontend\EventListener;
use TYPO3\CMS\Core\Attribute\AsEventListener;
use TYPO3\CMS\Frontend\ContentObject\Event\ModifyImageSourceCollectionEvent;
#[AsEventListener(
identifier: 'my-extension/my-event-listener',
)]
final readonly class MyEventListener
{
public function __invoke(ModifyImageSourceCollectionEvent $event): void
{
$event->setSourceCollection(
'<source src="bar-file.jpg" media="(max-device-width: 600px)">',
);
}
}
New in version 13.0
The PHP attribute \TYPO3\
has been
introduced to tag a PHP class as an event listener. Alternatively, you can also
register an event listener via the Configuration/
file. Have
a look into the section Implementing an event listener in your extension.