TYPO3  7.6
documentation/ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 if (TYPO3_MODE === 'BE') {
5  // Registers a Backend Module
6  \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
7  'TYPO3.CMS.Documentation',
8  'help',
9  'documentation',
10  'top',
11  array(
12  'Document' => 'list, download, fetch',
13  ),
14  array(
15  'access' => 'user,group',
16  'icon' => 'EXT:documentation/Resources/Public/Icons/module-documentation.svg',
17  'labels' => 'LLL:EXT:documentation/Resources/Private/Language/locallang_mod.xlf',
18  )
19  );
20 }