src/Entity/PageTranslation.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PageTranslationRepository;
  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=PageTranslationRepository::class)
  9.  */
  10. class PageTranslation implements TranslationInterface
  11. {
  12.     use TranslationTrait;
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=255, nullable=true)
  21.      */
  22.     private $titre;
  23.     /**
  24.      * @ORM\Column(type="text", nullable=true)
  25.      */
  26.     private $preview;
  27.     /**
  28.      * @ORM\Column(type="text", nullable=true)
  29.      */
  30.     private $contenu;
  31.     /**
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     private $seo_titre;
  35.     /**
  36.      * @ORM\Column(type="text", nullable=true)
  37.      */
  38.     private $seo_description;
  39.     /**
  40.      * @ORM\Column(type="text", nullable=true)
  41.      */
  42.     private $seo_keywords
  43.     
  44.     /**
  45.      * @ORM\Column(type="string", length=500, nullable=true)
  46.      */
  47.     private $menutitre;
  48.     /**
  49.      * @ORM\Column(type="string", length=500, nullable=true)
  50.      */
  51.     private $menuclass;
  52.     public function __toString(){
  53.         return $this->titre;
  54.     }
  55.     public function getId(): ?int
  56.     {
  57.         return $this->id;
  58.     }
  59.     public function getTitre(): ?string
  60.     {
  61.         return $this->titre;
  62.     }
  63.     public function setTitre(?string $titre): self
  64.     {
  65.         $this->titre $titre;
  66.         return $this;
  67.     }
  68.     public function getPreview(): ?string
  69.     {
  70.         return $this->preview;
  71.     }
  72.     public function setPreview(?string $preview): self
  73.     {
  74.         $this->preview $preview;
  75.         return $this;
  76.     }
  77.     public function getContenu(): ?string
  78.     {
  79.         return $this->contenu;
  80.     }
  81.     public function setContenu(?string $contenu): self
  82.     {
  83.         $this->contenu $contenu;
  84.         return $this;
  85.     }
  86.     public function getSeoTitre(): ?string
  87.     {
  88.         return $this->seo_titre;
  89.     }
  90.     public function setSeoTitre(?string $seo_titre): self
  91.     {
  92.         $this->seo_titre $seo_titre;
  93.         return $this;
  94.     }
  95.     public function getSeoDescription(): ?string
  96.     {
  97.         return $this->seo_description;
  98.     }
  99.     public function setSeoDescription(?string $seo_description): self
  100.     {
  101.         $this->seo_description $seo_description;
  102.         return $this;
  103.     }
  104.     public function getSeoKeywords(): ?string
  105.     {
  106.         return $this->seo_keywords;
  107.     }
  108.     public function setSeoKeywords(?string $seo_keywords): self
  109.     {
  110.         $this->seo_keywords $seo_keywords;
  111.         return $this;
  112.     } 
  113.     public function getMenutitre(): ?string
  114.     {
  115.         return $this->menutitre;
  116.     }
  117.     public function setMenutitre(?string $menutitre): self
  118.     {
  119.         $this->menutitre $menutitre;
  120.         return $this;
  121.     }
  122.     public function getMenuclass(): ?string
  123.     {
  124.         return $this->menuclass;
  125.     }
  126.     public function setMenuclass(?string $menuclass): self
  127.     {
  128.         $this->menuclass $menuclass;
  129.         return $this;
  130.     }
  131. }