[ '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', ], ], ], ];