TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:14 +02:00
commit ff4622ba97
138 changed files with 9045 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?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' => 'dashboard.module',
'routes' => [
'_default' => [
'target' => DashboardController::class . '::mainAction',
],
],
],
];