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
@@ -0,0 +1,89 @@
<?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\Dashboard\Controller;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use TYPO3\CMS\Backend\Attribute\AsController;
use TYPO3\CMS\Backend\Template\ModuleTemplateFactory;
use TYPO3\CMS\Core\Authentication\BackendUserAuthentication;
use TYPO3\CMS\Core\Localization\LanguageService;
use TYPO3\CMS\Core\Page\PageRenderer;
use TYPO3\CMS\Dashboard\DashboardInitializationService;
/**
* @internal
*/
#[AsController]
readonly class DashboardController
{
public function __construct(
protected PageRenderer $pageRenderer,
protected DashboardInitializationService $dashboardInitializationService,
protected ModuleTemplateFactory $moduleTemplateFactory,
) {}
public function mainAction(ServerRequestInterface $request): ResponseInterface
{
$this->dashboardInitializationService->initializeDashboards($request, $this->getBackendUser());
$view = $this->moduleTemplateFactory->create($request);
$this->preparePageRenderer();
$this->addFrontendResources();
$view->setTitle($this->getLanguageService()->translate('title', 'dashboard.module'));
$view->getDocHeaderComponent()->disable();
return $view->renderResponse('Dashboard/Main');
}
/**
* Adds CSS and JS files that are necessary for widgets to the page renderer
*/
protected function addFrontendResources(): void
{
$javaScriptRenderer = $this->pageRenderer->getJavaScriptRenderer();
foreach ($this->dashboardInitializationService->getJavaScriptModuleInstructions() as $instruction) {
$javaScriptRenderer->addJavaScriptModuleInstruction($instruction);
}
foreach ($this->dashboardInitializationService->getCssFiles() as $cssFile) {
$this->pageRenderer->addCssFile($cssFile);
}
foreach ($this->dashboardInitializationService->getJsFiles() as $jsFile) {
$this->pageRenderer->addJsFile($jsFile);
}
}
/**
* Add the CSS and JS of the dashboard module to the page renderer
*/
protected function preparePageRenderer(): void
{
$this->pageRenderer->loadJavaScriptModule('@typo3/dashboard/dashboard.js');
$this->pageRenderer->addCssFile('EXT:dashboard/Resources/Public/Css/dashboard.css');
}
protected function getBackendUser(): BackendUserAuthentication
{
return $GLOBALS['BE_USER'];
}
protected function getLanguageService(): LanguageService
{
return $GLOBALS['LANG'];
}
}