‪TYPO3CMS  9.5
ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
5  'user',
6  'task',
7  'top',
8  '',
9  [
10  'routeTarget' => \‪TYPO3\CMS\Taskcenter\Controller\TaskModuleController::class . '::mainAction',
11  'access' => 'group,user',
12  'name' => 'user_task',
13  'icon' => 'EXT:taskcenter/Resources/Public/Icons/module-taskcenter.svg',
14  'labels' => 'LLL:EXT:taskcenter/Resources/Private/Language/locallang_mod.xlf'
15  ]
16 );
‪TYPO3