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' && !(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_INSTALL)) {
5 
6  // Register the backend module
8  'TYPO3.CMS.Lang',
9  'tools',
10  'language',
11  'after:extensionmanager',
12  [
13  'Language' => 'listLanguages, listTranslations, getTranslations, updateLanguage, updateTranslation, activateLanguage, deactivateLanguage',
14  ],
15  [
16  'access' => 'admin',
17  'icon' => 'EXT:lang/Resources/Public/Icons/module-lang.svg',
18  'labels' => 'LLL:EXT:lang/Resources/Private/Language/locallang_mod.xlf',
19  ]
20  );
21 }
if(!defined("DB_ERROR")) define("DB_ERROR"
static registerModule($extensionName, $mainModuleName='', $subModuleName='', $position='', array $controllerActions=[], array $moduleConfiguration=[])