TYPO3  7.6
wizard_sortpages/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\WizardSortpages\View\SortPagesWizardModuleFunction::class,
8  null,
9  'LLL:EXT:wizard_sortpages/Resources/Private/Language/locallang.xlf:wiz_sort'
10  );
11 
12  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr(
13  '_MOD_web_func',
14  'EXT:wizard_sortpages/Resources/Private/Language/locallang_csh.xlf'
15  );
16 }