forked from georgringer/t3monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.php
More file actions
28 lines (27 loc) · 938 Bytes
/
ext_tables.php
File metadata and controls
28 lines (27 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
defined('TYPO3_MODE') || die('Access denied.');
call_user_func(
function () {
if (TYPO3_MODE === 'BE') {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'T3Monitor.t3monitoring',
'tools',
't3monitor',
'top',
[
'Statistic' => 'index,administration',
'Core' => 'list',
'Client' => 'show,fetch',
'Extension' => 'list, show',
'Sla' => 'list, show',
'Tag' => 'list, show',
],
[
'access' => 'user,group',
'icon' => 'EXT:t3monitoring/Resources/Public/Icons/module.svg',
'labels' => 'LLL:EXT:t3monitoring/Resources/Private/Language/locallang_t3monitor.xlf',
]
);
}
}
);