src/Entity/Accordeons.php line 11

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