src/Entity/MediaTranslation.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MediaTranslationRepository;
  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.  * @ORM\Entity(repositoryClass=MediaTranslationRepository::class)
  10.  */
  11. class MediaTranslation implements TranslationInterface
  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.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $seo_titre;
  28.     /**
  29.      * @ORM\Column(type="text", nullable=true)
  30.      */
  31.     private $seo_description;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $seo_keywords;
  36.     
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getTitre(): ?string
  42.     {
  43.         return $this->titre;
  44.     }
  45.     public function setTitre(?string $titre): self
  46.     {
  47.         $this->titre $titre;
  48.         return $this;
  49.     }
  50.     public function getSeoTitre(): ?string
  51.     {
  52.         return $this->seo_titre;
  53.     }
  54.     public function setSeoTitre(?string $seo_titre): self
  55.     {
  56.         $this->seo_titre $seo_titre;
  57.         return $this;
  58.     } 
  59.     public function getSeoDescription(): ?string
  60.     {
  61.         return $this->seo_description;
  62.     }
  63.     public function setSeoDescription(?string $seo_description): self
  64.     {
  65.         $this->seo_description $seo_description;
  66.         return $this;
  67.     }
  68.     public function getSeoKeywords(): ?string
  69.     {
  70.         return $this->seo_keywords;
  71.     }
  72.     public function setSeoKeywords(?string $seo_keywords): self
  73.     {
  74.         $this->seo_keywords $seo_keywords;
  75.         return $this;
  76.     }
  77. }