TYPO3 CMS  TYPO3_8-7
ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 if (TYPO3_MODE === 'BE') {
6  'TYPO3.CMS.Extensionmanager',
7  'tools',
8  'extensionmanager',
9  '',
10  [
11  'List' => 'index,unresolvedDependencies,ter,showAllVersions,distributions',
12  'Action' => 'toggleExtensionInstallationState,installExtensionWithoutSystemDependencyCheck,removeExtension,downloadExtensionZip,downloadExtensionData,reloadExtensionData',
13  'Configuration' => 'showConfigurationForm,save,saveAndClose',
14  'Download' => 'checkDependencies,installFromTer,installExtensionWithoutSystemDependencyCheck,installDistribution,updateExtension,updateCommentForUpdatableVersions',
15  'UpdateScript' => 'show',
16  'UpdateFromTer' => 'updateExtensionListFromTer',
17  'UploadExtensionFile' => 'form,extract',
18  'Distribution' => 'show'
19  ],
20  [
21  'access' => 'admin',
22  'icon' => 'EXT:extensionmanager/Resources/Public/Icons/module-extensionmanager.svg',
23  'labels' => 'LLL:EXT:extensionmanager/Resources/Private/Language/locallang_mod.xlf',
24  ]
25  );
26 
27  // Register extension status report system
28  $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['reports']['tx_reports']['status']['providers']['Extension Manager'][] =
29  \TYPO3\CMS\Extensionmanager\Report\ExtensionStatus::class;
30 }
$GLOBALS['TBE_STYLES']['skins']['backend']
Definition: ext_tables.php:5
static registerModule($extensionName, $mainModuleName='', $subModuleName='', $position='', array $controllerActions=[], array $moduleConfiguration=[])