25 lines
610 B
PHP
25 lines
610 B
PHP
<?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',
|
|
],
|
|
],
|
|
],
|
|
];
|