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