Feature: #95077 - New PSR-14 ProcessFileListActionsEvent

See forge#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 the File > Filelist module.

Registration of the Event in your extensions' Services.yaml:

MyVendor\MyPackage\FileList\MyEventListener:
  tags:
    - name: event.listener
      identifier: 'my-package/filelist/my-event-listener'

The corresponding event listener class:

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.