src/Entity/HomeImage.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  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 App\Repository\HomeImageRepository;
  8. use Gedmo\Timestampable\Traits\TimestampableEntity;
  9. #[ORM\Entity(repositoryClassHomeImageRepository::class)]
  10. class HomeImage
  11. {
  12.     use TimestampableEntity;
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $title null;
  19.     #[ORM\Column(nullabletrue)]
  20.     private ?bool $isEnable null;
  21.     #[ORM\Column(nullabletrue)]
  22.     private ?bool $accueil null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  24.     private ?\DateTimeInterface $deletedAt null;
  25.     #[ORM\OneToMany(mappedBy'homeImage'targetEntityMedia::class)]
  26.     private Collection $medias;
  27.     public function __construct()
  28.     {
  29.         // $this->medias = new ArrayCollection();
  30.     }
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getTitle(): ?string
  36.     {
  37.         return $this->title;
  38.     }
  39.     public function setTitle(?string $title): static
  40.     {
  41.         $this->title $title;
  42.         return $this;
  43.     }
  44.     public function isIsEnable(): ?bool
  45.     {
  46.         return $this->isEnable;
  47.     }
  48.     public function setIsEnable(?bool $isEnable): static
  49.     {
  50.         $this->isEnable $isEnable;
  51.         return $this;
  52.     }
  53.     public function isAccueil(): ?bool
  54.     {
  55.         return $this->accueil;
  56.     }
  57.     public function setAccueil(?bool $accueil): static
  58.     {
  59.         $this->accueil $accueil;
  60.         return $this;
  61.     }
  62.     public function getDeletedAt(): ?\DateTimeInterface
  63.     {
  64.         return $this->deletedAt;
  65.     }
  66.     public function setDeletedAt(?\DateTimeInterface $deletedAt): static
  67.     {
  68.         $this->deletedAt $deletedAt;
  69.         return $this;
  70.     }
  71.     /**
  72.      * @return Collection<int, Media>
  73.      */
  74.     public function getMedias(): Collection
  75.     {
  76.         return $this->medias;
  77.     }
  78.     public function addMedia(Media $media): static
  79.     {
  80.         if (!$this->medias->contains($media)) {
  81.             $this->medias->add($media);
  82.             $media->setHomeImage($this);
  83.         }
  84.         return $this;
  85.     }
  86.     public function removeMedia(Media $media): static
  87.     {
  88.         if ($this->medias->removeElement($media)) {
  89.             // set the owning side to null (unless already changed)
  90.             if ($media->getHomeImage() === $this) {
  91.                 $media->setHomeImage(null);
  92.             }
  93.         }
  94.         return $this;
  95.     }
  96. }