‪TYPO3CMS  10.4
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 defined('TYPO3_MODE') or die();
4 
5 // Module Web->Info->Log
6 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::insertModuleFunction(
7  'web_info',
8  \‪TYPO3\CMS\Belog\Module\BackendLogModuleBootstrap::class,
9  '',
10  'Log'
11 );
12 
13 // Module Tools->Log
14 \‪TYPO3\CMS\‪Extbase\Utility\ExtensionUtility::registerModule(
15  'Belog',
16  'system',
17  'log',
18  '',
19  [
20  \‪TYPO3\CMS\Belog\Controller\BackendLogController::class => 'list,deleteMessage',
21  ],
22  [
23  'access' => 'admin',
24  'icon' => 'EXT:belog/Resources/Public/Icons/module-belog.svg',
25  'labels' => 'LLL:EXT:belog/Resources/Private/Language/locallang_mod.xlf',
26  ]
27 );
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:18
‪TYPO3