TYPO3 CMS  TYPO3_7-6
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  'labels' => [
15  'tabs_images' => [
16  'tab' => 'EXT:recordlist/Resources/Public/Icons/module-list.svg',
17  ],
18  'll_ref' => 'LLL:EXT:lang/locallang_mod_web_list.xlf',
19  ],
20  ]
21  );
22 
23  // register element browsers
24  $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ElementBrowsers']['db'] = \TYPO3\CMS\Recordlist\Browser\DatabaseBrowser::class;
25  $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ElementBrowsers']['file'] = \TYPO3\CMS\Recordlist\Browser\FileBrowser::class;
26  $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ElementBrowsers']['folder'] = \TYPO3\CMS\Recordlist\Browser\FolderBrowser::class;
27 }
if(!defined("DB_ERROR")) define("DB_ERROR"
$GLOBALS['PAGES_TYPES']
Definition: ext_tables.php:12
static addModule($main, $sub='', $position='', $path='', $moduleConfiguration=[])