src/Entity/Configuration/OptionValue.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Configuration;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Timestampable\Traits\TimestampableEntity;
  8. use App\Repository\Configuration\OptionValueRepository;
  9. #[ORM\Entity(repositoryClassOptionValueRepository::class)]
  10. class OptionValue
  11. {
  12.     use TimestampableEntity;
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\Column(nullabletrue)]
  18.     private ?bool $isEnable null;
  19.     #[ORM\Column(nullabletrue)]
  20.     private ?bool $isOther null;
  21.     #[ORM\Column(nullabletrue)]
  22.     private ?bool $hasDescription null;
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?bool $hasFile null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $onClickColorBg null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $onClickColorText null;
  29.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  30.     private ?\DateTimeInterface $deletedAt null;
  31.     #[ORM\ManyToOne(inversedBy'optionValues')]
  32.     #[ORM\JoinColumn(nullablefalse)]
  33.     private ?Option $relatedOption null;
  34.     #[ORM\OneToMany(mappedBy'optionValue'targetEntityValueInSurvey::class, orphanRemovaltrue)]
  35.     private Collection $valueInSurveys;
  36.     public function __construct()
  37.     {
  38.         $this->createdAt = new \DateTime();
  39.         $this->updatedAt = new \DateTime();
  40.         $this->valueInSurveys = new ArrayCollection();
  41.     }
  42.     public function getId(): ?int
  43.     {
  44.         return $this->id;
  45.     }
  46.     public function isIsEnable(): ?bool
  47.     {
  48.         return $this->isEnable;
  49.     }
  50.     public function setIsEnable(?bool $isEnable): self
  51.     {
  52.         $this->isEnable $isEnable;
  53.         return $this;
  54.     }
  55.     public function isIsOther(): ?bool
  56.     {
  57.         return $this->isOther;
  58.     }
  59.     public function setIsOther(?bool $isOther): self
  60.     {
  61.         $this->isOther $isOther;
  62.         return $this;
  63.     }
  64.     public function isHasDescription(): ?bool
  65.     {
  66.         return $this->hasDescription;
  67.     }
  68.     public function setHasDescription(?bool $hasDescription): self
  69.     {
  70.         $this->hasDescription $hasDescription;
  71.         return $this;
  72.     }
  73.     public function isHasFile(): ?bool
  74.     {
  75.         return $this->hasFile;
  76.     }
  77.     public function setHasFile(?bool $hasFile): self
  78.     {
  79.         $this->hasFile $hasFile;
  80.         return $this;
  81.     }
  82.     public function getOnClickColorBg(): ?string
  83.     {
  84.         return $this->onClickColorBg;
  85.     }
  86.     public function setOnClickColorBg(?string $onClickColorBg): self
  87.     {
  88.         $this->onClickColorBg $onClickColorBg;
  89.         return $this;
  90.     }
  91.     public function getOnClickColorText(): ?string
  92.     {
  93.         return $this->onClickColorText;
  94.     }
  95.     public function setOnClickColorText(?string $onClickColorText): self
  96.     {
  97.         $this->onClickColorText $onClickColorText;
  98.         return $this;
  99.     }
  100.     public function getDeletedAt(): ?\DateTimeInterface
  101.     {
  102.         return $this->deletedAt;
  103.     }
  104.     public function setDeletedAt(?\DateTimeInterface $deletedAt): self
  105.     {
  106.         $this->deletedAt $deletedAt;
  107.         return $this;
  108.     }
  109.     public function getRelatedOption(): ?Option
  110.     {
  111.         return $this->relatedOption;
  112.     }
  113.     public function setRelatedOption(?Option $relatedOption): self
  114.     {
  115.         $this->relatedOption $relatedOption;
  116.         return $this;
  117.     }
  118.     /**
  119.      * @return Collection<int, ValueInSurvey>
  120.      */
  121.     public function getValueInSurveys(): Collection
  122.     {
  123.         return $this->valueInSurveys;
  124.     }
  125.     public function addValueInSurvey(ValueInSurvey $valueInSurvey): self
  126.     {
  127.         if (!$this->valueInSurveys->contains($valueInSurvey)) {
  128.             $this->valueInSurveys->add($valueInSurvey);
  129.             $valueInSurvey->setOptionValue($this);
  130.         }
  131.         return $this;
  132.     }
  133.     public function removeValueInSurvey(ValueInSurvey $valueInSurvey): self
  134.     {
  135.         if ($this->valueInSurveys->removeElement($valueInSurvey)) {
  136.             // set the owning side to null (unless already changed)
  137.             if ($valueInSurvey->getOptionValue() === $this) {
  138.                 $valueInSurvey->setOptionValue(null);
  139.             }
  140.         }
  141.         return $this;
  142.     }
  143. }