TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -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',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user