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  'web',
7  'info',
8  '',
9  '',
10  [
11  'routeTarget' => \TYPO3\CMS\Info\Controller\InfoModuleController::class . '::mainAction',
12  'access' => 'user,group',
13  'name' => 'web_info',
14  'icon' => 'EXT:info/Resources/Public/Icons/module-info.svg',
15  'labels' => 'LLL:EXT:lang/Resources/Private/Language/locallang_mod_web_info.xlf'
16  ]
17  );
18 }
static addModule($main, $sub='', $position='', $path=null, $moduleConfiguration=[])