src/Entity/ActualitesTranslation.php line 16

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