src/Entity/Carousels.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CarouselsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=CarouselsRepository::class)
  7.  */
  8. class Carousels
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="text",  nullable=true)
  18.      */
  19.     private $TitreFr;
  20.     /**
  21.      * @ORM\Column(type="text",  nullable=true)
  22.      */
  23.     private $TitreEn;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $Image;
  28.     /**
  29.      * @ORM\ManyToOne(targetEntity=Contenus::class, inversedBy="carousels")
  30.      */
  31.     private $Contenus;
  32.     /**
  33.      * @ORM\Column(type="text", nullable=true)
  34.      */
  35.     private $TexteFr;
  36.     /**
  37.      * @ORM\Column(type="text", nullable=true)
  38.      */
  39.     private $TexteEn;
  40.     /**
  41.      * @ORM\Column(type="integer", nullable=true)
  42.      */
  43.     private $Ordre;
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getTitreFr(): ?string
  49.     {
  50.         return $this->TitreFr;
  51.     }
  52.     public function setTitreFr(?string $TitreFr): self
  53.     {
  54.         $this->TitreFr $TitreFr;
  55.         return $this;
  56.     }
  57.     public function getTitreEn(): ?string
  58.     {
  59.         return $this->TitreEn;
  60.     }
  61.     public function setTitreEn(?string $TitreEn): self
  62.     {
  63.         $this->TitreEn $TitreEn;
  64.         return $this;
  65.     }
  66.     public function getImage(): ?string
  67.     {
  68.         return $this->Image;
  69.     }
  70.     public function setImage(?string $Image): self
  71.     {
  72.         $this->Image $Image;
  73.         return $this;
  74.     }
  75.     public function getContenus(): ?Contenus
  76.     {
  77.         return $this->Contenus;
  78.     }
  79.     public function setContenus(?Contenus $Contenus): self
  80.     {
  81.         $this->Contenus $Contenus;
  82.         return $this;
  83.     }
  84.     public function getTexteFr(): ?string
  85.     {
  86.         return $this->TexteFr;
  87.     }
  88.     public function setTexteFr(?string $TexteFr): self
  89.     {
  90.         $this->TexteFr $TexteFr;
  91.         return $this;
  92.     }
  93.     public function getTexteEn(): ?string
  94.     {
  95.         return $this->TexteEn;
  96.     }
  97.     public function setTexteEn(?string $TexteEn): self
  98.     {
  99.         $this->TexteEn $TexteEn;
  100.         return $this;
  101.     }
  102.     public function getOrdre(): ?int
  103.     {
  104.         return $this->Ordre;
  105.     }
  106.     public function setOrdre(?int $Ordre): self
  107.     {
  108.         $this->Ordre $Ordre;
  109.         return $this;
  110.     }
  111. }