Leuchtfeuer/typo3-secure-downloads

View on GitHub
Configuration/Backend/Modules.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

use Leuchtfeuer\SecureDownloads\Controller\LogController;

return [
    'web_sdl_traffic' => [
        'parent' => 'web',
        'position' => ['after' => 'web_info'],
        'access' => 'user',
        'path' => '/module/page/secure-downloads',
        'labels' => 'LLL:EXT:secure_downloads/Resources/Private/Language/locallang_log.xlf',
        'extensionName' => 'Secure Downloads',
        'iconIdentifier' => 'tx_securedownloads-module',
        'controllerActions' => [
            LogController::class => [
                'list',
            ],
        ],
    ],
];