TYPO3  7.6
lowlevel/ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 if (TYPO3_MODE === 'BE') {
5  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
6  'system',
7  'dbint',
8  '',
9  '',
10  array(
11  'routeTarget' => \TYPO3\CMS\Lowlevel\View\DatabaseIntegrityView::class . '::mainAction',
12  'access' => 'admin',
13  'name' => 'system_dbint',
14  'workspaces' => 'online',
15  'labels' => array(
16  'tabs_images' => array(
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  );
23  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
24  'system',
25  'config',
26  '',
27  '',
28  array(
29  'routeTarget' => \TYPO3\CMS\Lowlevel\View\ConfigurationView::class . '::mainAction',
30  'access' => 'admin',
31  'name' => 'system_config',
32  'workspaces' => 'online',
33  'labels' => array(
34  'tabs_images' => array(
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 }