TYPO3 CMS  TYPO3_8-7
ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 if (TYPO3_MODE === 'BE') {
6  'TYPO3.CMS.IndexedSearch',
7  'web',
8  'isearch',
9  '',
10  [
11  'Administration' => 'index,pages,externalDocuments,statistic,statisticDetails,deleteIndexedItem,saveStopwordsKeywords,wordDetail',
12  ],
13  [
14  'access' => 'admin',
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 
22 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('index_config', 'EXT:indexed_search/Resources/Private/Language/locallang_csh_indexcfg.xlf');
static registerModule($extensionName, $mainModuleName='', $subModuleName='', $position='', array $controllerActions=[], array $moduleConfiguration=[])