TYPO3  7.6
wizard_crpages/ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 if (TYPO3_MODE === 'BE') {
5  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::insertModuleFunction(
6  'web_func',
7  \TYPO3\CMS\WizardCrpages\Controller\CreatePagesWizardModuleFunctionController::class,
8  null,
9  'LLL:EXT:wizard_crpages/Resources/Private/Language/locallang.xlf:wiz_crMany'
10  );
11 
12  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
13  '_MOD_web_func',
14  'EXT:wizard_crpages/Resources/Private/Language/locallang_csh.xlf'
15  );
16 }