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