ModifyInfoModuleContentEvent
New in version 12.0
This event has been introduced as a more powerful and flexible alternative
to $GLOBALS
which has now been removed.
The PSR-14 event \TYPO3\
allows the content above and below the info module to be modified. The content
added in the event is displayed in each submodule of Web > Info.
The event also provides the get
method, which
returns the current requested submodule. It is therefore possible to
limit the added content to a subset of the available submodules.
Next to get
and the get
methods this event also features getters and setters for the header
and footer content.
Access control
The added content is by default always displayed. This event
provides the has
method, returning whether the access checks
in the module were passed by the user.
This way, event listeners can decide on their own, whether their content should always be shown, or only if a user also has access to the main module content.
Example
Registration of the event listener in the extension's Services.
:
services:
# Place here the default dependency injection configuration
MyVendor\MyExtension\Info\EventListener\MyEventListener:
tags:
- name: event.listener
identifier: 'my-extension/content-to-info-module'
Read how to configure dependency injection in extensions.
The corresponding event listener class:
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\Info\EventListener;
use TYPO3\CMS\Info\Controller\Event\ModifyInfoModuleContentEvent;
final class MyEventListener
{
public function __invoke(ModifyInfoModuleContentEvent $event): void
{
// Add header content for the "Localization overview" submodule,
// if user has access to module content
if (
$event->hasAccess() &&
$event->getCurrentModule()->getIdentifier() === 'web_info_translations'
) {
$event->addHeaderContent('<h3>Additional header content</h3>');
}
}
}
API
- class ModifyInfoModuleContentEvent
-
- Fully qualified name
-
\TYPO3\
CMS\ Info\ Controller\ Event\ Modify Info Module Content Event
Listeners to this Event will be able to modify the header and footer content of the info module
- hasAccess ( )
-
Whether the current user has access to the main content of the info module.
IMPORTANT: This is only for informational purposes. Listeners can therefore decide on their own if their content should be added to the module even if the user does not have access to the main module content.
- Returns
-
bool
- setHeaderContent ( string $content)
-
Set content for the header. Can also be used to e.g. reorder existing content.
IMPORTANT: This overwrites existing content from previous listeners!
- param $content
-
the content
-
Set content for the footer. Can also be used to e.g. reorder existing content.
IMPORTANT: This overwrites existing content from previous listeners!
- param $content
-
the content
-
Add additional content to the footer
- param $content
-
the content
-
- Returns
-
string