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  'system',
7  'dbint',
8  '',
9  '',
10  [
11  'routeTarget' => \TYPO3\CMS\Lowlevel\View\DatabaseIntegrityView::class . '::mainAction',
12  'access' => 'admin',
13  'name' => 'system_dbint',
14  'workspaces' => 'online',
15  'icon' => 'EXT:lowlevel/Resources/Public/Icons/module-dbint.svg',
16  'labels' => 'LLL:EXT:lowlevel/Resources/Private/Language/locallang_mod.xlf'
17  ]
18  );
20  'system',
21  'config',
22  '',
23  '',
24  [
25  'routeTarget' => \TYPO3\CMS\Lowlevel\View\ConfigurationView::class . '::mainAction',
26  'access' => 'admin',
27  'name' => 'system_config',
28  'workspaces' => 'online',
29  'icon' => 'EXT:lowlevel/Resources/Public/Icons/module-config.svg',
30  'labels' => 'LLL:EXT:lowlevel/Resources/Private/Language/locallang_mod_configuration.xlf'
31  ]
32  );
33 }
static addModule($main, $sub='', $position='', $path=null, $moduleConfiguration=[])