-
Notifications
You must be signed in to change notification settings - Fork 3
/
ext_tables.php
29 lines (26 loc) · 1017 Bytes
/
ext_tables.php
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
29
<?php
/*
* This file is part of the package typo3/cms-digital-asset-management.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
defined('TYPO3_MODE') || die();
(function () {
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
'file',
'DigitalAssetManagement',
'top',
'',
[
'routeTarget' => \TYPO3\CMS\DigitalAssetManagement\Controller\DigitalAssetManagementController::class . '::handleRequest',
'access' => 'user,group',
'name' => 'file_DigitalAssetManagement',
'icon' => 'EXT:digital_asset_management/Resources/Public/Icons/module-dam.svg',
'labels' => 'LLL:EXT:digital_asset_management/Resources/Private/Language/locallang_mod.xlf',
'workspaces' => 'online,custom',
'navigationComponentId' => '',
'inheritNavigationComponentFromMainModule' => false
]
);
})();