‪TYPO3CMS  10.4
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 defined('TYPO3_MODE') or die();
4 
5 // Add module
6 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
7  'system',
8  'txschedulerM1',
9  '',
10  '',
11  [
12  'routeTarget' => \‪TYPO3\CMS\Scheduler\Controller\SchedulerModuleController::class . '::mainAction',
13  'access' => 'admin',
14  'name' => 'system_txschedulerM1',
15  'icon' => 'EXT:scheduler/Resources/Public/Icons/module-scheduler.svg',
16  'labels' => 'LLL:EXT:scheduler/Resources/Private/Language/locallang_mod.xlf'
17  ]
18 );
19 
20 // Add context sensitive help (csh) to the backend module
21 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
22  '_MOD_system_txschedulerM1',
23  'EXT:scheduler/Resources/Private/Language/locallang_csh_scheduler.xlf'
24 );
‪TYPO3