‪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  'web',
6  'list',
7  '',
8  '',
9  [
10  'routeTarget' => \‪TYPO3\CMS\Recordlist\Controller\RecordListController::class . '::mainAction',
11  'access' => 'user,group',
12  'name' => 'web_list',
13  'icon' => 'EXT:recordlist/Resources/Public/Icons/module-list.svg',
14  'labels' => 'LLL:EXT:core/Resources/Private/Language/locallang_mod_web_list.xlf'
15  ]
16 );
‪TYPO3