TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:34 +02:00
commit 8a3bef5a34
61 changed files with 4603 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
<?php
use TYPO3\CMS\Reports\Controller\ContentStatisticsController;
use TYPO3\CMS\Reports\Controller\RecordStatisticsController;
use TYPO3\CMS\Reports\Controller\StatusReportController;
/**
* Definitions for modules provided by EXT:reports
*/
return [
'system_reports' => [
'parent' => 'admin',
'position' => ['after' => 'system_log'],
'access' => 'admin',
'path' => '/module/system/reports',
'iconIdentifier' => 'module-reports',
'labels' => 'reports.modules.overview',
'showSubmoduleOverview' => true,
],
'system_reports_status' => [
'parent' => 'system_reports',
'access' => 'admin',
'path' => '/module/system/reports/status',
'iconIdentifier' => 'module-reports',
'labels' => 'reports.modules.status',
'routes' => [
'_default' => [
'target' => StatusReportController::class . '::handleRequest',
],
],
],
'system_reports_statistics' => [
'parent' => 'system_reports',
'access' => 'admin',
'path' => '/module/system/reports/statistics',
'iconIdentifier' => 'module-reports',
'labels' => 'reports.modules.statistics',
'routes' => [
'_default' => [
'target' => RecordStatisticsController::class . '::handleRequest',
],
],
],
'system_reports_contentstatistics' => [
'parent' => 'system_reports',
'access' => 'admin',
'path' => '/module/system/reports/content-statistics',
'iconIdentifier' => 'module-reports',
'labels' => [
'title' => 'reports.messages:contentStatistics.title',
'shortDescription' => 'reports.messages:contentStatistics.shortDescription',
'description' => 'reports.messages:contentStatistics.description',
],
'routes' => [
'_default' => [
'target' => ContentStatisticsController::class . '::handleRequest',
],
],
],
];