Files
cms-core/Classes/Schema/Capability/LabelCapability.php
T

66 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\Schema\Capability;
/**
* Contains all information of compiling the label information of a schema.
*/
final readonly class LabelCapability implements SchemaCapabilityInterface
{
public function __construct(
private ?string $primaryFieldName,
/** @var string[] */
private array $additionalFieldNames,
private bool $alwaysRenderAdditionalFields,
private array $configuration,
) {}
public function getPrimaryFieldName(): ?string
{
return $this->primaryFieldName;
}
public function hasPrimaryField(): bool
{
return $this->primaryFieldName !== null;
}
/**
* @return string[]
*/
public function getAdditionalFieldNames(): array
{
return $this->additionalFieldNames;
}
public function getAllLabelFieldNames(): array
{
return array_unique(array_filter(array_merge([$this->primaryFieldName], $this->additionalFieldNames)));
}
public function alwaysRenderAdditionalFields(): bool
{
return $this->alwaysRenderAdditionalFields;
}
public function getConfiguration(): array
{
return $this->configuration;
}
}