‪TYPO3CMS  10.4
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 defined('TYPO3_MODE') or die();
4 
5 \‪TYPO3\CMS\‪Extbase\Utility\ExtensionUtility::registerModule(
6  'IndexedSearch',
7  'web',
8  'isearch',
9  '',
10  [
11  \‪TYPO3\CMS\IndexedSearch\Controller\AdministrationController::class => 'index,pages,externalDocuments,statistic,statisticDetails,deleteIndexedItem,saveStopwordsKeywords,wordDetail',
12  ],
13  [
14  'access' => 'user,group',
15  'icon' => 'EXT:indexed_search/Resources/Public/Icons/module-indexed_search.svg',
16  'labels' => 'LLL:EXT:indexed_search/Resources/Private/Language/locallang_mod.xlf',
17  ]
18 );
19 
20 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::allowTableOnStandardPages('index_config');
21 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('index_config', 'EXT:indexed_search/Resources/Private/Language/locallang_csh_indexcfg.xlf');
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:18
‪TYPO3