Files
cms-reports/Classes/Controller/RecordStatisticsController.php

69 lines
2.4 KiB
PHP

<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Reports\Controller;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use TYPO3\CMS\Backend\Attribute\AsController;
use TYPO3\CMS\Backend\Template\Enum\ModuleLayout;
use TYPO3\CMS\Backend\Template\ModuleTemplateFactory;
use TYPO3\CMS\Core\Localization\LanguageService;
use TYPO3\CMS\Reports\Service\RecordStatisticsService;
/**
* @internal This class is a specific Backend controller implementation and is not considered part of the Public TYPO3 API.
*/
#[AsController]
final readonly class RecordStatisticsController
{
public function __construct(
private ModuleTemplateFactory $moduleTemplateFactory,
private RecordStatisticsService $recordStatisticsService,
) {}
/**
* Main action - displays database record statistics
*/
public function handleRequest(ServerRequestInterface $request): ResponseInterface
{
$languageService = $this->getLanguageService();
$view = $this->moduleTemplateFactory->create($request);
$view->setLayout(ModuleLayout::NORMAL);
$view->setTitle(
$languageService->translate('title', 'reports.modules.overview'),
$languageService->translate('title', 'reports.modules.statistics')
);
$view->makeDocHeaderModuleMenu();
$view->getDocHeaderComponent()->setShortcutContext(
'system_reports_statistics',
$languageService->translate('title', 'reports.modules.statistics')
);
return $view->assignMultiple([
'pages' => $this->recordStatisticsService->collectPageStatistics(),
'doktypes' => $this->recordStatisticsService->collectDoktypeStatistics(),
'tables' => $this->recordStatisticsService->collectTableStatistics(),
])->renderResponse('RecordStatistics');
}
private function getLanguageService(): LanguageService
{
return $GLOBALS['LANG'];
}
}