A new PSR-14 event
\TYPO3\CMS\Core\Configuration\Event\ProcessFileListActionsEvent has
been added to TYPO3 Core. This event is fired after generating the
actions for the files and folders listing in the File > Filelist
module.
Registration of the Event in your extensions' Services.yaml:
use TYPO3\CMS\Filelist\Event\ProcessFileListActionsEvent;
class MyEventListener {
public function __invoke(ProcessFileListActionsEvent $event): void
{
// do your magic
}
}
Impact
This event can be used to manipulate the icons, used for the edit
control section in the files and folders listing within the
File > Filelist module.
Feature: #95077 - New PSR-14 ProcessFileListActionsEvent
https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.4/Feature-95077-NewPSR-14ProcessFileListActionsEvent.html
Feature: #95077 - New PSR-14 ProcessFileListActionsEvent
See 95077
Description
A new PSR-14 event
\TYPO3\CMS\Core\Configuration\Event\ProcessFileListActionsEvent
has been added to TYPO3 Core. This event is fired after generating the actions for the files and folders listing in theFile > Filelist
module.Registration of the Event in your extensions'
Services.yaml
:The corresponding event listener class:
Impact
This event can be used to manipulate the icons, used for the edit control section in the files and folders listing within the
File > Filelist
module.