‪TYPO3CMS  9.5
ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
5  'system',
6  'dbint',
7  '',
8  '',
9  [
10  'routeTarget' => \‪TYPO3\CMS\Lowlevel\Controller\DatabaseIntegrityController::class . '::mainAction',
11  'access' => 'admin',
12  'name' => 'system_dbint',
13  'workspaces' => 'online',
14  'icon' => 'EXT:lowlevel/Resources/Public/Icons/module-dbint.svg',
15  'labels' => 'LLL:EXT:lowlevel/Resources/Private/Language/locallang_mod.xlf'
16  ]
17 );
18 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
19  'system',
20  'config',
21  '',
22  '',
23  [
24  'routeTarget' => \‪TYPO3\CMS\Lowlevel\Controller\ConfigurationController::class . '::mainAction',
25  'access' => 'admin',
26  'name' => 'system_config',
27  'workspaces' => 'online',
28  'icon' => 'EXT:lowlevel/Resources/Public/Icons/module-config.svg',
29  'labels' => 'LLL:EXT:lowlevel/Resources/Private/Language/locallang_mod_configuration.xlf'
30  ]
31 );
‪TYPO3