src/Entity/Slider.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\SliderRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\DBAL\Types\Types;
  8. use Doctrine\ORM\Mapping as ORM;
  9. #[ORM\Entity(repositoryClassSliderRepository::class)]
  10. #[ApiResource]
  11. class Slider
  12. {
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $name null;
  19.     #[ORM\Column(length100nullabletrue)]
  20.     private ?string $slug null;
  21.     #[ORM\Column(typeTypes::TEXT)]
  22.     private ?string $content null;
  23.     #[ORM\OneToMany(mappedBy'slider'targetEntityPageInfos::class)]
  24.     private Collection $pageInfos;
  25.     public function __construct()
  26.     {
  27.         $this->pageInfos = new ArrayCollection();
  28.     }
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getName(): ?string
  34.     {
  35.         return $this->name;
  36.     }
  37.     public function setName(?string $name): static
  38.     {
  39.         $this->name $name;
  40.         return $this;
  41.     }
  42.     public function getSlug(): ?string
  43.     {
  44.         return $this->slug;
  45.     }
  46.     public function setSlug(?string $slug): static
  47.     {
  48.         $this->slug $slug;
  49.         return $this;
  50.     }
  51.     public function getContent(): ?string
  52.     {
  53.         return $this->content;
  54.     }
  55.     public function setContent(string $content): static
  56.     {
  57.         $this->content $content;
  58.         return $this;
  59.     }
  60.     /**
  61.      * @return Collection<int, PageInfos>
  62.      */
  63.     public function getPageInfos(): Collection
  64.     {
  65.         return $this->pageInfos;
  66.     }
  67.     public function addPageInfo(PageInfos $pageInfo): static
  68.     {
  69.         if (!$this->pageInfos->contains($pageInfo)) {
  70.             $this->pageInfos->add($pageInfo);
  71.             $pageInfo->setSlider($this);
  72.         }
  73.         return $this;
  74.     }
  75.     public function removePageInfo(PageInfos $pageInfo): static
  76.     {
  77.         if ($this->pageInfos->removeElement($pageInfo)) {
  78.             // set the owning side to null (unless already changed)
  79.             if ($pageInfo->getSlider() === $this) {
  80.                 $pageInfo->setSlider(null);
  81.             }
  82.         }
  83.         return $this;
  84.     }
  85. }