‪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\‪Extbase\Utility\ExtensionUtility::registerModule(
5  '‪TYPO3.CMS.Extensionmanager',
6  'tools',
7  'extensionmanager',
8  '',
9  [
10  'List' => 'index,unresolvedDependencies,ter,showAllVersions,distributions',
11  'Action' => 'toggleExtensionInstallationState,installExtensionWithoutSystemDependencyCheck,removeExtension,downloadExtensionZip,reloadExtensionData',
12  'Configuration' => 'showConfigurationForm,save,saveAndClose',
13  'Download' => 'checkDependencies,installFromTer,installExtensionWithoutSystemDependencyCheck,installDistribution,updateExtension,updateCommentForUpdatableVersions',
14  'UpdateScript' => 'show',
15  'UpdateFromTer' => 'updateExtensionListFromTer',
16  'UploadExtensionFile' => 'form,extract',
17  'Distribution' => 'show'
18  ],
19  [
20  'access' => 'systemMaintainer',
21  'icon' => 'EXT:extensionmanager/Resources/Public/Icons/module-extensionmanager.svg',
22  'labels' => 'LLL:EXT:extensionmanager/Resources/Private/Language/locallang_mod.xlf',
23  ]
24 );
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:4
‪TYPO3