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