‪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::insertModuleFunction(
7  'web_info',
8  \‪TYPO3\CMS\Linkvalidator\Report\LinkValidatorReport::class,
9  null,
10  'LLL:EXT:linkvalidator/Resources/Private/Language/locallang.xlf:mod_linkvalidator'
11 );
12 
13 // Initialize Context Sensitive Help (CSH)
14 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
15  'linkvalidator',
16  'EXT:linkvalidator/Resources/Private/Language/Module/locallang_csh.xlf'
17 );
‪TYPO3