TYPO3  7.6
about/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.About',
8  'help',
9  'about',
10  'top',
11  array('About' => 'index'),
12  array(
13  'access' => 'user,group',
14  'icon' => 'EXT:about/Resources/Public/Icons/module-about.svg',
15  'labels' => 'LLL:EXT:lang/locallang_mod_help_about.xlf'
16  )
17  );
18 }