<?php
namespace App\Entity;
use ApiPlatform\Metadata\ApiResource;
use ApiPlatform\Metadata\Get;
use App\Model\Entity;
use App\Repository\ConfigurationTypeRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
#[ORM\Entity(repositoryClass: ConfigurationTypeRepository::class)]
#[ApiResource(
operations: [new Get(),],
normalizationContext: ['groups' => ['identifier:read', 'configuration_type:read']]
)]
class ConfigurationType extends Entity
{
public const MOBILIER = 'MOBILIER';
public const TRANSPORT = "TRANSPORT";
public const PROJECT_DISCOVERY = "PROJECT_DISCOVERY";
#[ORM\Column(length: 100)]
#[Groups(['configuration:read', 'configuration_type:read'])]
private ?string $name = null;
#[ORM\Column(length: 30)]
#[Groups(['configuration:read', 'configuration_type:read'])]
private ?string $code = null;
#[ORM\OneToMany(mappedBy: 'type', targetEntity: Question::class, orphanRemoval: true)]
#[ORM\OrderBy(['position' => 'asc'])]
#[Groups(['configuration:read', 'configuration_type:read'])]
private Collection $questions;
public function __construct()
{
$this->questions = new ArrayCollection();
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getCode(): ?string
{
return $this->code;
}
public function setCode(string $code): self
{
$this->code = $code;
return $this;
}
/**
* @return Collection<int, Question>
*/
public function getQuestions(): Collection
{
return $this->questions;
}
public function addQuestion(Question $question): self
{
if (!$this->questions->contains($question)) {
$this->questions->add($question);
$question->setType($this);
}
return $this;
}
public function removeQuestion(Question $question): self
{
if ($this->questions->removeElement($question)) {
// set the owning side to null (unless already changed)
if ($question->getType() === $this) {
$question->setType(null);
}
}
return $this;
}
}