‪TYPO3CMS  11.5
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
7 
8 defined('TYPO3') or die();
9 
11  'tools',
12  'toolsmaintenance',
13  '',
14  '',
15  [
16  'routeTarget' => ‪BackendModuleController::class . '::maintenanceAction',
17  'access' => 'systemMaintainer',
18  'name' => 'tools_toolsmaintenance',
19  'iconIdentifier' => 'module-install-maintenance',
20  'labels' => 'LLL:EXT:install/Resources/Private/Language/ModuleInstallMaintenance.xlf',
21  ]
22 );
24  'tools',
25  'toolssettings',
26  '',
27  '',
28  [
29  'routeTarget' => ‪BackendModuleController::class . '::settingsAction',
30  'access' => 'systemMaintainer',
31  'name' => 'tools_toolssettings',
32  'iconIdentifier' => 'module-install-settings',
33  'labels' => 'LLL:EXT:install/Resources/Private/Language/ModuleInstallSettings.xlf',
34  ]
35 );
37  'tools',
38  'toolsupgrade',
39  '',
40  '',
41  [
42  'routeTarget' => ‪BackendModuleController::class . '::upgradeAction',
43  'access' => 'systemMaintainer',
44  'name' => 'tools_toolsupgrade',
45  'iconIdentifier' => 'module-install-upgrade',
46  'labels' => 'LLL:EXT:install/Resources/Private/Language/ModuleInstallUpgrade.xlf',
47  ]
48 );
50  'tools',
51  'toolsenvironment',
52  '',
53  '',
54  [
55  'routeTarget' => ‪BackendModuleController::class . '::environmentAction',
56  'access' => 'systemMaintainer',
57  'name' => 'tools_toolsenvironment',
58  'iconIdentifier' => 'module-install-environment',
59  'labels' => 'LLL:EXT:install/Resources/Private/Language/ModuleInstallEnvironment.xlf',
60  ]
61 );
‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility
Definition: ExtensionManagementUtility.php:43
‪TYPO3\CMS\Install\Controller\BackendModuleController
Definition: BackendModuleController.php:49