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