TYPO3  7.6
aboutmodules/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)) {
6  \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
7  'TYPO3.CMS.Aboutmodules',
8  'help',
9  'aboutmodules',
10  'after:about',
11  array(
12  'Modules' => 'index'
13  ),
14  array(
15  'access' => 'user,group',
16  'icon' => 'EXT:aboutmodules/Resources/Public/Icons/module-aboutmodules.svg',
17  'labels' => 'LLL:EXT:aboutmodules/Resources/Private/Language/locallang_mod.xlf'
18  )
19  );
20 }