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