69 lines
2.2 KiB
PHP
69 lines
2.2 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\Dashboard\Widgets;
|
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use TYPO3\CMS\Backend\View\BackendViewFactory;
|
|
use TYPO3\CMS\Core\Information\Typo3Information;
|
|
use TYPO3\CMS\Core\Information\Typo3Version;
|
|
|
|
/**
|
|
* Concrete TYPO3 information widget
|
|
*
|
|
* This widget will give some general information about TYPO3 version and the version installed.
|
|
*
|
|
* There are no options available for this widget
|
|
*/
|
|
class T3GeneralInformationWidget implements WidgetInterface, RequestAwareWidgetInterface
|
|
{
|
|
private ServerRequestInterface $request;
|
|
|
|
public function __construct(
|
|
private readonly WidgetConfigurationInterface $configuration,
|
|
private readonly BackendViewFactory $backendViewFactory,
|
|
private readonly array $options = [],
|
|
) {}
|
|
|
|
public function setRequest(ServerRequestInterface $request): void
|
|
{
|
|
$this->request = $request;
|
|
}
|
|
|
|
public function renderWidgetContent(): string
|
|
{
|
|
$typo3Information = new Typo3Information();
|
|
$typo3Version = new Typo3Version();
|
|
$view = $this->backendViewFactory->create($this->request);
|
|
$view->assignMultiple([
|
|
'title' => 'TYPO3 CMS ' . $typo3Version->getVersion(),
|
|
'copyrightYear' => $typo3Information->getCopyrightYear(),
|
|
'currentVersion' => $typo3Version->getVersion(),
|
|
'donationUrl' => $typo3Information::URL_DONATE,
|
|
'copyRightNotice' => $typo3Information->getCopyrightNotice(),
|
|
'options' => $this->options,
|
|
'configuration' => $this->configuration,
|
|
]);
|
|
return $view->render('Widget/T3GeneralInformationWidget');
|
|
}
|
|
|
|
public function getOptions(): array
|
|
{
|
|
return $this->options;
|
|
}
|
|
}
|