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