ModifyDatabaseQueryForRecordListingEvent
New in version 12.0
This event has been introduced to replace the following removed hooks:
$GLOBALS
['TYPO3_ CONF_ VARS'] ['SC_ OPTIONS'] ['typo3/ class. db_ list_ extra. inc'] ['get Table'] $GLOBALS
['TYPO3_ CONF_ VARS'] ['SC_ OPTIONS'] ['TYPO3\ CMS\ Recordlist\ Record List\ Database Record List'] ['modify Query'] $GLOBALS
['TYPO3_ CONF_ VARS'] ['SC_ OPTIONS'] ['TYPO3\ CMS\ Recordlist\ Record List\ Database Record List'] ['make Search String Constraints']
The PSR-14 event
\TYPO3\
allows to alter the query builder SQL
statement before a list of records is rendered in record lists, such as
the List module or an element browser.
Example
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\Backend\EventListener;
use TYPO3\CMS\Backend\View\Event\ModifyDatabaseQueryForRecordListingEvent;
use TYPO3\CMS\Core\Attribute\AsEventListener;
#[AsEventListener(
identifier: 'my-extension/backend/modify-database-query-for-record-list',
)]
final readonly class MyEventListener
{
public function __invoke(ModifyDatabaseQueryForRecordListingEvent $event): void
{
$queryBuilder = $event->getQueryBuilder();
// ... do something ...
$event->setQueryBuilder($queryBuilder);
}
}
New in version 13.0
The PHP attribute \TYPO3\
has been
introduced to tag a PHP class as an event listener. Alternatively, or if you
need to be compatible with older TYPO3 versions, you can also register an
event listener via the Configuration/
file. Switch to
an older version of this page for an example or have a look at the section
Implementing an event listener in your extension.
API
- class ModifyDatabaseQueryForRecordListingEvent
-
- Fully qualified name
-
\TYPO3\
CMS\ Backend\ View\ Event\ Modify Database Query For Record Listing Event
Use this Event to alter the database query when loading content for a page (usually in the list module) before it is executed.