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  'web',
7  'ts',
8  '',
9  '',
10  [
11  'routeTarget' => \TYPO3\CMS\Tstemplate\Controller\TypoScriptTemplateModuleController::class . '::mainAction',
12  'access' => 'admin',
13  'name' => 'web_ts',
14  'icon' => 'EXT:tstemplate/Resources/Public/Icons/module-tstemplate.svg',
15  'labels' => 'LLL:EXT:tstemplate/Resources/Private/Language/locallang_mod.xlf'
16  ]
17  );
18 
20  'web_ts',
21  \TYPO3\CMS\Tstemplate\Controller\TypoScriptTemplateConstantEditorModuleFunctionController::class,
22  null,
23  'LLL:EXT:tstemplate/Resources/Private/Language/locallang.xlf:constantEditor'
24  );
25 
27  'web_ts',
28  \TYPO3\CMS\Tstemplate\Controller\TypoScriptTemplateInformationModuleFunctionController::class,
29  null,
30  'LLL:EXT:tstemplate/Resources/Private/Language/locallang.xlf:infoModify'
31  );
32 
34  'web_ts',
35  \TYPO3\CMS\Tstemplate\Controller\TypoScriptTemplateObjectBrowserModuleFunctionController::class,
36  null,
37  'LLL:EXT:tstemplate/Resources/Private/Language/locallang.xlf:objectBrowser'
38  );
39 
41  'web_ts',
42  \TYPO3\CMS\Tstemplate\Controller\TemplateAnalyzerModuleFunctionController::class,
43  null,
44  'LLL:EXT:tstemplate/Resources/Private/Language/locallang.xlf:templateAnalyzer'
45  );
46 }
static insertModuleFunction($modname, $className, $classPath=null, $title, $MM_key='function', $WS='')
static addModule($main, $sub='', $position='', $path=null, $moduleConfiguration=[])