55 lines
1.6 KiB
PHP
55 lines
1.6 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\Site\Set;
|
|
|
|
use TYPO3\CMS\Core\Settings\CategoryDefinition;
|
|
use TYPO3\CMS\Core\Settings\SettingDefinition;
|
|
|
|
readonly class SetDefinition
|
|
{
|
|
/**
|
|
* @param list<string> $dependencies
|
|
* @param SettingDefinition[] $settingsDefinitions
|
|
* @param CategoryDefinition[] $categoryDefinitions
|
|
* @param array<string, array<string, mixed>> $routeEnhancers Route enhancers keyed by identifier
|
|
*/
|
|
public function __construct(
|
|
public string $name,
|
|
public string $label,
|
|
public array $dependencies = [],
|
|
public array $optionalDependencies = [],
|
|
public array $settingsDefinitions = [],
|
|
public array $categoryDefinitions = [],
|
|
public ?string $typoscript = null,
|
|
public ?string $pagets = null,
|
|
public array $settings = [],
|
|
public bool $hidden = false,
|
|
public array $routeEnhancers = [],
|
|
) {}
|
|
|
|
public function toArray(): array
|
|
{
|
|
return array_filter(get_object_vars($this), fn(mixed $value) => $value !== null && $value !== []);
|
|
}
|
|
|
|
public static function __set_state(array $state): self
|
|
{
|
|
return new self(...$state);
|
|
}
|
|
}
|