‪TYPO3CMS  11.5
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
11 
12 defined('TYPO3') or die();
13 
15  'web',
16  'ts',
17  '',
18  '',
19  [
20  'routeTarget' => ‪TypoScriptTemplateModuleController::class . '::mainAction',
21  'access' => 'admin',
22  'name' => 'web_ts',
23  'iconIdentifier' => 'module-tstemplate',
24  'labels' => 'LLL:EXT:tstemplate/Resources/Private/Language/locallang_mod.xlf',
25  ]
26 );
27 
28 ‪ExtensionManagementUtility::insertModuleFunction(
29  'web_ts',
31  '',
32  'LLL:EXT:tstemplate/Resources/Private/Language/locallang.xlf:constantEditor'
33 );
34 
35 ‪ExtensionManagementUtility::insertModuleFunction(
36  'web_ts',
38  '',
39  'LLL:EXT:tstemplate/Resources/Private/Language/locallang.xlf:infoModify'
40 );
41 
42 ‪ExtensionManagementUtility::insertModuleFunction(
43  'web_ts',
45  '',
46  'LLL:EXT:tstemplate/Resources/Private/Language/locallang.xlf:objectBrowser'
47 );
48 
49 ‪ExtensionManagementUtility::insertModuleFunction(
50  'web_ts',
52  '',
53  'LLL:EXT:tstemplate/Resources/Private/Language/locallang.xlf:templateAnalyzer'
54 );
‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility
Definition: ExtensionManagementUtility.php:43
‪TYPO3\CMS\Tstemplate\Controller\TypoScriptTemplateConstantEditorModuleFunctionController
Definition: TypoScriptTemplateConstantEditorModuleFunctionController.php:33
‪TYPO3\CMS\Tstemplate\Controller\TemplateAnalyzerModuleFunctionController
Definition: TemplateAnalyzerModuleFunctionController.php:31
‪TYPO3\CMS\Tstemplate\Controller\TypoScriptTemplateModuleController
Definition: TypoScriptTemplateModuleController.php:51
‪TYPO3\CMS\Tstemplate\Controller\TypoScriptTemplateObjectBrowserModuleFunctionController
Definition: TypoScriptTemplateObjectBrowserModuleFunctionController.php:40
‪TYPO3\CMS\Tstemplate\Controller\TypoScriptTemplateInformationModuleFunctionController
Definition: TypoScriptTemplateInformationModuleFunctionController.php:32