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  'web',
7  'list',
8  '',
9  '',
10  [
11  'routeTarget' => \TYPO3\CMS\Recordlist\RecordList::class . '::mainAction',
12  'access' => 'user,group',
13  'name' => 'web_list',
14  'icon' => 'EXT:recordlist/Resources/Public/Icons/module-list.svg',
15  'labels' => 'LLL:EXT:lang/Resources/Private/Language/locallang_mod_web_list.xlf'
16  ]
17  );
18 
19  // register element browsers
20  $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ElementBrowsers']['db'] = \TYPO3\CMS\Recordlist\Browser\DatabaseBrowser::class;
21  $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ElementBrowsers']['file'] = \TYPO3\CMS\Recordlist\Browser\FileBrowser::class;
22  $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ElementBrowsers']['file_reference'] = \TYPO3\CMS\Recordlist\Browser\FileBrowser::class;
23  $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ElementBrowsers']['folder'] = \TYPO3\CMS\Recordlist\Browser\FolderBrowser::class;
24 }
$GLOBALS['TBE_STYLES']['skins']['backend']
Definition: ext_tables.php:5
static addModule($main, $sub='', $position='', $path=null, $moduleConfiguration=[])