forked from in2code-de/groupmailer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.php
More file actions
24 lines (22 loc) · 769 Bytes
/
ext_tables.php
File metadata and controls
24 lines (22 loc) · 769 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
<?php
defined('TYPO3_MODE') or die();
call_user_func(
function () {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'groupmailer',
'web',
'administration',
'bottom',
[
In2code\Groupmailer\Controller\AdministrationController::class => 'index, new, create',
],
[
'access' => 'user,group',
'icon' => 'EXT:groupmailer/Resources/Public/Icons/module-administration.svg',
'labels' => 'LLL:EXT:groupmailer/Resources/Private/Language/locallang_mod.xlf',
'navigationComponentId' => '',
'inheritNavigationComponentFromMainModule' => false
]
);
}
);