src/Entity/Um6p/EventTranslation.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Um6p;
  3. use App\Repository\Um6p\EventTranslationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
  6. use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
  7. /**
  8.  * @ORM\Entity(repositoryClass=EventTranslationRepository::class)
  9.  */
  10. class EventTranslation implements TranslationInterface
  11.     use TranslationTrait;
  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 $titre;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $preview;
  26.     /**
  27.      * @ORM\Column(type="text", nullable=true)
  28.      */
  29.     private $contenu;
  30.     /**
  31.      * @ORM\Column(type="string", length=255, nullable=true)
  32.      */
  33.     private $seo_titre;
  34.     /**
  35.      * @ORM\Column(type="text", nullable=true)
  36.      */
  37.     private $seo_description;
  38.     /**
  39.      * @ORM\Column(type="text", nullable=true)
  40.      */
  41.     private $seo_keywords;
  42.  
  43.     public function getId(): ?int
  44.     {
  45.         return $this->id;
  46.     }
  47.     public function getTitre(): ?string
  48.     {
  49.         return $this->titre;
  50.     }
  51.     public function setTitre(?string $titre): self
  52.     {
  53.         $this->titre $titre;
  54.         return $this;
  55.     }
  56.     public function getPreview(): ?string
  57.     {
  58.         return $this->preview;
  59.     }
  60.     public function setPreview(?string $preview): self
  61.     {
  62.         $this->preview $preview;
  63.         return $this;
  64.     }
  65.     public function getContenu(): ?string
  66.     {
  67.         return $this->contenu;
  68.     }
  69.     public function setContenu(?string $contenu): self
  70.     {
  71.         $this->contenu $contenu;
  72.         return $this;
  73.     }
  74.     public function getSeoTitre(): ?string
  75.     {
  76.         return $this->seo_titre;
  77.     }
  78.     public function setSeoTitre(?string $seo_titre): self
  79.     {
  80.         $this->seo_titre $seo_titre;
  81.         return $this;
  82.     }
  83.     public function getSeoDescription(): ?string
  84.     {
  85.         return $this->seo_description;
  86.     }
  87.     public function setSeoDescription(?string $seo_description): self
  88.     {
  89.         $this->seo_description $seo_description;
  90.         return $this;
  91.     }
  92.     public function getSeoKeywords(): ?string
  93.     {
  94.         return $this->seo_keywords;
  95.     }
  96.     public function setSeoKeywords(?string $seo_keywords): self
  97.     {
  98.         $this->seo_keywords $seo_keywords;
  99.         return $this;
  100.     }
  101.    
  102.     
  103. }