-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathext_tables.php
More file actions
28 lines (25 loc) · 899 Bytes
/
ext_tables.php
File metadata and controls
28 lines (25 loc) · 899 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
if (!defined('TYPO3')) {
die('Access denied.');
}
(function () {
if (TYPO3 === 'BE') {
/**
* Registers a Backend Module
*/
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'Taskqueue',
'tools', // Make module a submodule of 'tools'
'taskqueue', // Submodule key
'', // Position
[
\Undkonsorten\Taskqueue\Controller\TaskController::class => 'list, show, delete, run, deleteFinished, deleteFailed, reactivate, search, searchUid, searchResult',
],
[
'access' => 'user,group',
'icon' => 'EXT:taskqueue/Resources/Public/Icons/Extension.svg',
'labels' => 'LLL:EXT:taskqueue/Resources/Private/Language/locallang_taskqueue.xlf',
]
);
}
})();