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