src/Entity/Page.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PageRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Gedmo\Mapping\Annotation\Slug;
  9. use Gedmo\Timestampable\Traits\TimestampableEntity;
  10. use Symfony\Component\String\Slugger\AsciiSlugger;
  11. use Symfony\Component\String\Slugger\SluggerInterface;
  12. #[ORM\Entity(repositoryClassPageRepository::class)]
  13. class Page
  14. {
  15.     use TimestampableEntity;
  16.     #[ORM\Id]
  17.     #[ORM\GeneratedValue]
  18.     #[ORM\Column]
  19.     private ?int $id null;
  20.     #[ORM\Column(length255)]
  21.     private ?string $titre null;
  22.     #[ORM\Column(length255uniquetrue)]
  23.     private ?string $slug null;
  24.     #[ORM\Column(typeTypes::TEXT)]
  25.     private ?string $contenu null;
  26.     #[ORM\Column(typeTypes::TEXT)]
  27.     private ?string $contenuBrut null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $banniere null;
  30.     #[ORM\OneToMany(mappedBy'page'targetEntitySection::class, cascade: ['persist'], fetch"EAGER"orphanRemovaltrue)]
  31.     private Collection $section;
  32.     #[ORM\Column(typeTypes::SMALLINTnullabletrue)]
  33.     private ?int $template null;
  34.     #[ORM\Column(length255nullabletrue)]
  35.     private ?string $text_banniere null;
  36.     #[ORM\ManyToMany(targetEntityFormule::class)]
  37.     private Collection $formules;
  38.     public function __construct()
  39.     {
  40.         $this->tarifs = new ArrayCollection();
  41.         $this->sliders = new ArrayCollection();
  42.         $this->section = new ArrayCollection();
  43.         $this->formules = new ArrayCollection();
  44.     }
  45.     public function setId(int $id): self
  46.     {
  47.         $this->id $id;
  48.         return $this;
  49.     }
  50.     public function getId(): ?int
  51.     {
  52.         return $this->id;
  53.     }
  54.     public function getTitre(): ?string
  55.     {
  56.         return $this->titre;
  57.     }
  58.     public function setTitre(string $titre): self
  59.     {
  60.         $this->titre $titre;
  61.         return $this;
  62.     }
  63.     public function getSlug(): ?string
  64.     {
  65.         return $this->slug;
  66.     }
  67.     public function setSlug(string $slug null): self
  68.     {
  69.         if ($slug) {
  70.             $this->slug $slug;
  71.         } else {
  72.             $slug = new AsciiSlugger();
  73.             $this->slug strtolower($slug->slug($this->titre).'.html');
  74.         }
  75.         return $this;
  76.     }
  77.     public function getContenu(): ?string
  78.     {
  79.         return $this->contenu;
  80.     }
  81.     public function setContenu(string $contenu): self
  82.     {
  83.         $this->contenu $contenu;
  84.         return $this;
  85.     }
  86.     public function getContenuBrut(): ?string
  87.     {
  88.         return $this->contenuBrut;
  89.     }
  90.     public function setContenuBrut(string $contenuBrut null): self
  91.     {
  92.         if ($contenuBrut) {
  93.             $this->contenuBrut $contenuBrut;
  94.         } else {
  95.             $this->contenuBrut strip_tags($this->contenu);
  96.         }
  97.         return $this;
  98.     }
  99.     public function getImage(): ?string
  100.     {
  101.         return $this->image;
  102.     }
  103.     public function setImage(?string $image): self
  104.     {
  105.         $this->image $image;
  106.         return $this;
  107.     }
  108.     public function isAccueil() :bool
  109.     {
  110.         if ($this->slug === 'index.html')
  111.         {
  112.             return true;
  113.         }
  114.         return false;
  115.     }
  116.     /**
  117.      * @return Collection<int, Slider>
  118.      */
  119.     public function getSliders(): Collection
  120.     {
  121.         return $this->sliders;
  122.     }
  123.     public function addSlider(Slider $slider): self
  124.     {
  125.         if (!$this->sliders->contains($slider)) {
  126.             $this->sliders->add($slider);
  127.             $slider->addPage($this);
  128.         }
  129.         return $this;
  130.     }
  131.     public function removeSlider(Slider $slider): self
  132.     {
  133.         if ($this->sliders->removeElement($slider)) {
  134.             $slider->removePage($this);
  135.         }
  136.         return $this;
  137.     }
  138.     public function getBanniere(): ?string
  139.     {
  140.         return $this->banniere;
  141.     }
  142.     public function setBanniere(?string $banniere): self
  143.     {
  144.         $this->banniere $banniere;
  145.         return $this;
  146.     }
  147.     /**
  148.      * @return Collection<int, Section>
  149.      */
  150.     public function getSection(): Collection
  151.     {
  152.         return $this->section;
  153.     }
  154.     public function addSection(Section $section): self
  155.     {
  156.         if (!$this->section->contains($section)) {
  157.             $this->section->add($section);
  158.             $section->setPage($this);
  159.         }
  160.         return $this;
  161.     }
  162.     public function removeSection(Section $section): self
  163.     {
  164.         if ($this->section->removeElement($section)) {
  165.             // set the owning side to null (unless already changed)
  166.             if ($section->getPage() === $this) {
  167.                 $section->setPage(null);
  168.             }
  169.         }
  170.         return $this;
  171.     }
  172.     public function getTemplate(): ?int
  173.     {
  174.         return $this->template;
  175.     }
  176.     public function setTemplate(?int $template): self
  177.     {
  178.         $this->template $template;
  179.         return $this;
  180.     }
  181.     public function getTextBanniere(): ?string
  182.     {
  183.         return $this->text_banniere;
  184.     }
  185.     public function setTextBanniere(?string $text_banniere): self
  186.     {
  187.         $this->text_banniere $text_banniere;
  188.         return $this;
  189.     }
  190.     /**
  191.      * @return Collection<int, Formule>
  192.      */
  193.     public function getFormules(): Collection
  194.     {
  195.         return $this->formules;
  196.     }
  197.     public function addFormule(Formule $formule): self
  198.     {
  199.         if (!$this->formules->contains($formule)) {
  200.             $this->formules->add($formule);
  201.         }
  202.         return $this;
  203.     }
  204.     public function setFormules(array $formules): self
  205.     {
  206.         $this->formules = new ArrayCollection();
  207.         foreach ($formules as $formule) {
  208.             $this->formules->add($formule);
  209.         }
  210.         return $this;
  211.     }
  212.     public function removeFormule(Formule $formule): self
  213.     {
  214.         $this->formules->removeElement($formule);
  215.         return $this;
  216.     }
  217. }