‪TYPO3CMS  10.4
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 defined('TYPO3_MODE') or die();
4 
5 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
6  'system',
7  'reports',
8  '',
9  '',
10  [
11  'routeTarget' => \‪TYPO3\CMS\Reports\Controller\ReportController::class . '::handleRequest',
12  'access' => 'admin',
13  'name' => 'system_reports',
14  'icon' => 'EXT:reports/Resources/Public/Icons/module-reports.svg',
15  'labels' => 'LLL:EXT:reports/Resources/Private/Language/locallang.xlf'
16  ]
17 );
‪TYPO3