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 // Avoid that this block is loaded in frontend or within upgrade wizards
5 if (TYPO3_MODE === 'BE' && !(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_INSTALL)) {
7  'TYPO3.CMS.About',
8  'help',
9  'about',
10  'top',
11  [
12  'About' => 'index'
13  ],
14  [
15  'access' => 'user,group',
16  'icon' => 'EXT:about/Resources/Public/Icons/module-about.svg',
17  'labels' => 'LLL:EXT:about/Resources/Private/Language/Modules/about.xlf'
18  ]
19  );
20 
22  'TYPO3.CMS.About',
23  'help',
24  'aboutmodules',
25  'after:about',
26  [
27  'Modules' => 'index'
28  ],
29  [
30  'access' => 'user,group',
31  'icon' => 'EXT:about/Resources/Public/Icons/module-aboutmodules.svg',
32  'labels' => 'LLL:EXT:about/Resources/Private/Language/Modules/aboutmodules.xlf'
33  ]
34  );
35 }
static registerModule($extensionName, $mainModuleName='', $subModuleName='', $position='', array $controllerActions=[], array $moduleConfiguration=[])