‪TYPO3CMS  9.5
ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 // Module System > Backend Users
5 \‪TYPO3\CMS\‪Extbase\Utility\ExtensionUtility::registerModule(
6  '‪TYPO3.CMS.Beuser',
7  'system',
8  'tx_Beuser',
9  'top',
10  [
11  'BackendUser' => 'index, addToCompareList, removeFromCompareList, compare, online, terminateBackendUserSession',
12  'BackendUserGroup' => 'index'
13  ],
14  [
15  'access' => 'admin',
16  'icon' => 'EXT:beuser/Resources/Public/Icons/module-beuser.svg',
17  'labels' => 'LLL:EXT:beuser/Resources/Private/Language/locallang_mod.xlf'
18  ]
19 );
20 
21 // Module System > Access
22 \‪TYPO3\CMS\‪Extbase\Utility\ExtensionUtility::registerModule(
23  '‪TYPO3.CMS.Beuser',
24  'system',
25  'tx_Permission',
26  'top',
27  [
28  'Permission' => 'index, edit, update'
29  ],
30  [
31  'access' => 'admin',
32  'icon' => 'EXT:beuser/Resources/Public/Icons/module-permission.svg',
33  'labels' => 'LLL:EXT:beuser/Resources/Private/Language/locallang_mod_permission.xlf',
34  'navigationComponentId' => '‪TYPO3/CMS/Backend/PageTree/PageTreeElement'
35  ]
36 );
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:4
‪TYPO3