‪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  'dbint',
8  '',
9  '',
10  [
11  'routeTarget' => \‪TYPO3\CMS\Lowlevel\Controller\DatabaseIntegrityController::class . '::mainAction',
12  'access' => 'admin',
13  'name' => 'system_dbint',
14  'workspaces' => 'online',
15  'icon' => 'EXT:lowlevel/Resources/Public/Icons/module-dbint.svg',
16  'labels' => 'LLL:EXT:lowlevel/Resources/Private/Language/locallang_mod.xlf'
17  ]
18 );
19 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
20  'system',
21  'config',
22  '',
23  '',
24  [
25  'routeTarget' => \‪TYPO3\CMS\Lowlevel\Controller\ConfigurationController::class . '::mainAction',
26  'access' => 'admin',
27  'name' => 'system_config',
28  'workspaces' => 'online',
29  'icon' => 'EXT:lowlevel/Resources/Public/Icons/module-config.svg',
30  'labels' => 'LLL:EXT:lowlevel/Resources/Private/Language/locallang_mod_configuration.xlf'
31  ]
32 );
‪TYPO3