TYPO3 CMS  TYPO3_6-2
ext_tables.php
Go to the documentation of this file.
1 <?php
2 if (!defined('TYPO3_MODE')) {
3  die('Access denied.');
4 }
5 if (TYPO3_MODE === 'BE') {
6  // Add module
8  'system',
9  'txschedulerM1',
10  '',
11  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'mod1/'
12  );
13 
14  // Add context sensitive help (csh) to the backend module
16  '_MOD_system_txschedulerM1',
17  'EXT:' . $_EXTKEY . '/mod1/locallang_csh_scheduler.xlf'
18  );
19 }
20 
21 // Register specific icon for run task button
23  array(
24  'run-task' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extRelPath($_EXTKEY) . 'Resources/Public/Images/Icons/RunTask.png'
25  ),
26  $_EXTKEY
27 );
static addSingleIcons(array $icons, $extKey='')
const TYPO3_MODE
Definition: init.php:40
die
Definition: index.php:6
static addModule($main, $sub='', $position='', $path='', $moduleConfiguration=array())