TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -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',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'dependencies' => [
|
||||
'backend',
|
||||
'core',
|
||||
],
|
||||
'imports' => [
|
||||
'@typo3/belog/' => 'EXT:belog/Resources/Public/JavaScript/',
|
||||
],
|
||||
];
|
||||
@@ -0,0 +1,8 @@
|
||||
services:
|
||||
_defaults:
|
||||
autowire: true
|
||||
autoconfigure: true
|
||||
public: false
|
||||
|
||||
TYPO3\CMS\Belog\:
|
||||
resource: '../Classes/*'
|
||||
Reference in New Issue
Block a user