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