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