TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:02 +02:00
commit b53992613d
22 changed files with 2485 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
use TYPO3\CMS\Belog\Controller\BackendLogController;
/**
* Definitions for modules provided by EXT:belog
*/
return [
'system_log' => [
'parent' => 'admin',
'position' => ['after' => 'integrations'],
'access' => 'user',
'iconIdentifier' => 'module-belog',
'labels' => 'belog.module',
'path' => '/module/system/log',
'aliases' => ['system_BelogLog'],
'extensionName' => 'Belog',
'controllerActions' => [
BackendLogController::class => [
'list', 'deleteMessage',
],
],
],
];