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  '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  'labels' => [
16  'tabs_images' => [
17  'tab' => 'EXT:lowlevel/Resources/Public/Icons/module-dbint.svg',
18  ],
19  'll_ref' => 'LLL:EXT:lowlevel/Resources/Private/Language/locallang_mod.xlf',
20  ],
21  ]
22  );
24  'system',
25  'config',
26  '',
27  '',
28  [
29  'routeTarget' => \TYPO3\CMS\Lowlevel\View\ConfigurationView::class . '::mainAction',
30  'access' => 'admin',
31  'name' => 'system_config',
32  'workspaces' => 'online',
33  'labels' => [
34  'tabs_images' => [
35  'tab' => 'EXT:lowlevel/Resources/Public/Icons/module-config.svg',
36  ],
37  'll_ref' => 'LLL:EXT:lowlevel/Resources/Private/Language/locallang_mod_configuration.xlf',
38  ],
39  ]
40  );
41 }
if(!defined("DB_ERROR")) define("DB_ERROR"
static addModule($main, $sub='', $position='', $path='', $moduleConfiguration=[])