‪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\‪Extbase\Utility\ExtensionUtility::registerModule(
6  'Filelist',
7  'file',
8  'list',
9  '',
10  [
11  \‪TYPO3\CMS\Filelist\Controller\FileListController::class => 'index, search',
12  ],
13  [
14  'access' => 'user,group',
15  'workspaces' => 'online,custom',
16  'icon' => 'EXT:filelist/Resources/Public/Icons/module-filelist.svg',
17  'labels' => 'LLL:EXT:filelist/Resources/Private/Language/locallang_mod_file_list.xlf'
18  ]
19 );
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:18
‪TYPO3