src/Entity/Pages.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PagesRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=PagesRepository::class)
  9.  */
  10. class Pages
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255, nullable=true)
  20.      */
  21.     private $TitreFr;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $TitreEn;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $TitreSeoFr;
  30.     /**
  31.      * @ORM\Column(type="string", length=255, nullable=true)
  32.      */
  33.     private $TitreSeoEn;
  34.     
  35.     /**
  36.      * @ORM\Column(type="text", nullable=true)
  37.      */
  38.     private $TexteSeoFr;
  39.     /**
  40.      * @ORM\Column(type="text", nullable=true)
  41.      */
  42.     private $TexteSeoEn;
  43.     /**
  44.      * @ORM\OneToMany(targetEntity=Sections::class, mappedBy="Pages")
  45.      */
  46.     private $sections;
  47.     /**
  48.      * @ORM\Column(type="string", length=255, nullable=true)
  49.      */
  50.     private $Route;
  51.     /**
  52.      * @ORM\Column(type="string", length=255, nullable=true)
  53.      */
  54.     private $Url;
  55.     public function __construct()
  56.     {
  57.         $this->sections = new ArrayCollection();
  58.     }
  59.     public function getId(): ?int
  60.     {
  61.         return $this->id;
  62.     }
  63.     public function getTitreFr(): ?string
  64.     {
  65.         return $this->TitreFr;
  66.     }
  67.     public function setTitreFr(?string $TitreFr): self
  68.     {
  69.         $this->TitreFr $TitreFr;
  70.         return $this;
  71.     }
  72.     public function getTitreEn(): ?string
  73.     {
  74.         return $this->TitreEn;
  75.     }
  76.     public function setTitreEn(?string $TitreEn): self
  77.     {
  78.         $this->TitreEn $TitreEn;
  79.         return $this;
  80.     }
  81.     public function getTitreSeoFr(): ?string
  82.     {
  83.         return $this->TitreSeoFr;
  84.     }
  85.     public function setTitreSeoFr(?string $TitreSeoFr): self
  86.     {
  87.         $this->TitreSeoFr $TitreSeoFr;
  88.         return $this;
  89.     }
  90.     public function getTitreSeoEn(): ?string
  91.     {
  92.         return $this->TitreSeoEn;
  93.     }
  94.     public function setTitreSeoEn(?string $TitreSeoEn): self
  95.     {
  96.         $this->TitreSeoEn $TitreSeoEn;
  97.         return $this;
  98.     }
  99.     public function getTexteSeoFr(): ?string
  100.     {
  101.         return $this->TexteSeoFr;
  102.     }
  103.     public function setTexteSeoFr(?string $TexteSeoFr): self
  104.     {
  105.         $this->TexteSeoFr $TexteSeoFr;
  106.         return $this;
  107.     }
  108.     public function getTexteSeoEn(): ?string
  109.     {
  110.         return $this->TexteSeoEn;
  111.     }
  112.     public function setTexteSeoEn(?string $TexteSeoEn): self
  113.     {
  114.         $this->TexteSeoEn $TexteSeoEn;
  115.         return $this;
  116.     }
  117.     /**
  118.      * @return Collection<int, Sections>
  119.      */
  120.     public function getSections(): Collection
  121.     {
  122.         return $this->sections;
  123.     }
  124.     public function addSection(Sections $section): self
  125.     {
  126.         if (!$this->sections->contains($section)) {
  127.             $this->sections[] = $section;
  128.             $section->setPages($this);
  129.         }
  130.         return $this;
  131.     }
  132.     public function removeSection(Sections $section): self
  133.     {
  134.         if ($this->sections->removeElement($section)) {
  135.             // set the owning side to null (unless already changed)
  136.             if ($section->getPages() === $this) {
  137.                 $section->setPages(null);
  138.             }
  139.         }
  140.         return $this;
  141.     }
  142.     public function getRoute(): ?string
  143.     {
  144.         return $this->Route;
  145.     }
  146.     public function setRoute(?string $Route): self
  147.     {
  148.         $this->Route $Route;
  149.         return $this;
  150.     }
  151.     public function getUrl(): ?string
  152.     {
  153.         return $this->Url;
  154.     }
  155.     public function setUrl(?string $Url): self
  156.     {
  157.         $this->Url $Url;
  158.         return $this;
  159.     }
  160. }