‪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  'tools',
6  'toolsmaintenance',
7  '',
8  '',
9  [
10  'routeTarget' => \‪TYPO3\CMS\Install\Controller\BackendModuleController::class . '::maintenanceAction',
11  'access' => 'systemMaintainer',
12  'name' => 'tools_toolsmaintenance',
13  'iconIdentifier' => 'module-install-maintenance',
14  'labels' => 'LLL:EXT:install/Resources/Private/Language/ModuleInstallMaintenance.xlf'
15  ]
16 );
17 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
18  'tools',
19  'toolssettings',
20  '',
21  '',
22  [
23  'routeTarget' => \‪TYPO3\CMS\Install\Controller\BackendModuleController::class . '::settingsAction',
24  'access' => 'systemMaintainer',
25  'name' => 'tools_toolssettings',
26  'iconIdentifier' => 'module-install-settings',
27  'labels' => 'LLL:EXT:install/Resources/Private/Language/ModuleInstallSettings.xlf'
28  ]
29 );
30 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
31  'tools',
32  'toolsupgrade',
33  '',
34  '',
35  [
36  'routeTarget' => \‪TYPO3\CMS\Install\Controller\BackendModuleController::class . '::upgradeAction',
37  'access' => 'systemMaintainer',
38  'name' => 'tools_toolsupgrade',
39  'iconIdentifier' => 'module-install-upgrade',
40  'labels' => 'LLL:EXT:install/Resources/Private/Language/ModuleInstallUpgrade.xlf'
41  ]
42 );
43 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
44  'tools',
45  'toolsenvironment',
46  '',
47  '',
48  [
49  'routeTarget' => \‪TYPO3\CMS\Install\Controller\BackendModuleController::class . '::environmentAction',
50  'access' => 'systemMaintainer',
51  'name' => 'tools_toolsenvironment',
52  'iconIdentifier' => 'module-install-environment',
53  'labels' => 'LLL:EXT:install/Resources/Private/Language/ModuleInstallEnvironment.xlf'
54  ]
55 );
‪TYPO3