Files
cms-core/Classes/Configuration/Event/SiteConfigurationLoadedEvent.php
T

49 lines
1.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\Core\Configuration\Event;
/**
* Event after a site configuration has been read from a yaml file
* before it is cached - allows dynamic modification of the site's configuration.
*/
final class SiteConfigurationLoadedEvent
{
public function __construct(
private readonly string $siteIdentifier,
private array $configuration
) {}
public function getSiteIdentifier(): string
{
return $this->siteIdentifier;
}
public function getConfiguration(): array
{
return $this->configuration;
}
/**
* @param array $configuration overwrite the configuration array of the site
*/
public function setConfiguration(array $configuration): void
{
$this->configuration = $configuration;
}
}