‪TYPO3CMS  11.5
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
7 
8 defined('TYPO3') or die();
9 
10 // Add module
12  'system',
13  'txschedulerM1',
14  '',
15  '',
16  [
17  'routeTarget' => ‪SchedulerModuleController::class . '::mainAction',
18  'access' => 'admin',
19  'name' => 'system_txschedulerM1',
20  'iconIdentifier' => 'module-scheduler',
21  'labels' => 'LLL:EXT:scheduler/Resources/Private/Language/locallang_mod.xlf',
22  ]
23 );
24 
25 // Add context sensitive help (csh) to the backend module
26 ‪ExtensionManagementUtility::addLLrefForTCAdescr(
27  '_MOD_system_txschedulerM1',
28  'EXT:scheduler/Resources/Private/Language/locallang_csh_scheduler.xlf'
29 );
‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility
Definition: ExtensionManagementUtility.php:43
‪TYPO3\CMS\Scheduler\Controller\SchedulerModuleController
Definition: SchedulerModuleController.php:58