‪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  // Legacy name, as this module was previously an Extbase controller. Keeping the name allows to keep the sys_be_shortcut functionality alive
8  'RecyclerRecycler',
9  '',
10  null,
11  [
12  'routeTarget' => \‪TYPO3\CMS\Recycler\Controller\RecyclerModuleController::class . '::handleRequest',
13  'access' => 'user,group',
14  'name' => 'web_RecyclerRecycler',
15  'icon' => 'EXT:recycler/Resources/Public/Icons/module-recycler.svg',
16  'labels' => 'LLL:EXT:recycler/Resources/Private/Language/locallang_mod.xlf',
17  ]
18 );
‪TYPO3