Your IP : 216.73.217.13


Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-dashboard/Configuration/Backend/
Upload File :
Current File : /var/www/surf/TYPO3/vendor/typo3/cms-dashboard/Configuration/Backend/Modules.php

<?php

use TYPO3\CMS\Dashboard\Controller\DashboardController;

/**
 * Definitions for modules provided by EXT:dashboard
 */
return [
    'dashboard' => [
        'position' => ['before' => '*'],
        'standalone' => true,
        'access' => 'user',
        'path' => '/module/dashboard',
        'iconIdentifier' => 'module-dashboard',
        'labels' => 'LLL:EXT:dashboard/Resources/Private/Language/locallang_mod.xlf',
        'routes' => [
            '_default' => [
                'target' => DashboardController::class . '::handleRequest',
            ],
        ],
    ],
];