TYPO3 CMS  TYPO3_8-7
ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 if (TYPO3_MODE === 'BE') {
6  'TYPO3.CMS.Filelist',
7  'file',
8  'list',
9  '',
10  [
11  'FileList' => '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:lang/Resources/Private/Language/locallang_mod_file_list.xlf'
18  ]
19  );
20 
21  $GLOBALS['TYPO3_CONF_VARS']['BE']['ContextMenu']['ItemProviders'][1486418731] = \TYPO3\CMS\Filelist\ContextMenu\ItemProviders\FileProvider::class;
22  $GLOBALS['TYPO3_CONF_VARS']['BE']['ContextMenu']['ItemProviders'][1486418732] = \TYPO3\CMS\Filelist\ContextMenu\ItemProviders\FilemountsProvider::class;
23  $GLOBALS['TYPO3_CONF_VARS']['BE']['ContextMenu']['ItemProviders'][1486418733] = \TYPO3\CMS\Filelist\ContextMenu\ItemProviders\FileStorageProvider::class;
24  $GLOBALS['TYPO3_CONF_VARS']['BE']['ContextMenu']['ItemProviders'][1486418734] = \TYPO3\CMS\Filelist\ContextMenu\ItemProviders\FileDragProvider::class;
25 }
$GLOBALS['TBE_STYLES']['skins']['backend']
Definition: ext_tables.php:5
static registerModule($extensionName, $mainModuleName='', $subModuleName='', $position='', array $controllerActions=[], array $moduleConfiguration=[])