Feature: #96806 - PSR-14 event for modifying button bar
See forge#96806
Description
A new PSR-14 event \TYPO3\
has been introduced. It serves as a direct replacement for the now removed hook
$GLOBALS
.
It can be used to modify the button bar in the TYPO3 backend module docheader.
Example
Registration of the event in your extension's Services.
:
MyVendor\MyPackage\Frontend\MyEventListener:
tags:
- name: event.listener
identifier: 'my-package/frontend/modify-button-bar'
Copied!
The corresponding event listener class:
use TYPO3\CMS\Backend\Template\Components\ModifyButtonBarEvent;
class MyEventListener {
public function __invoke(ModifyButtonBarEvent $event): void
{
// Do your magic here
}
}
Copied!
Impact
It's now possible to modify the TYPO3 backend button bar, using the new PSR-14 event.