TYPO3  7.6
recycler/ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 if (TYPO3_MODE === 'BE') {
5  \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
6  'TYPO3.CMS.Recycler',
7  'web',
8  'Recycler',
9  '',
10  array(
11  'RecyclerModule' => 'index',
12  ),
13  array(
14  'access' => 'user,group',
15  'icon' => 'EXT:recycler/Resources/Public/Icons/module-recycler.svg',
16  'labels' => 'LLL:EXT:recycler/Resources/Private/Language/locallang_mod.xlf',
17  )
18  );
19 }