src/Entity/ProductTranslation.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductTranslationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Mapping\Annotation as Gedmo;
  6. use Knp\DoctrineBehaviors\Contract\Entity\TranslatableInterface;
  7. use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
  8. use Knp\DoctrineBehaviors\Model\Translatable\TranslatableTrait;
  9. use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
  10. /**
  11.  * @ORM\Entity(repositoryClass=ProductTranslationRepository::class)
  12.  */
  13. class ProductTranslation implements TranslationInterface
  14. {
  15.     use TranslationTrait;
  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 $metaTitle;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $metaDescription;
  30.     /**
  31.      * @Gedmo\Slug(fields={"title"})
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     private $slug;
  35.     /**
  36.      * @ORM\Column(type="string", length=255, nullable=true)
  37.      */
  38.     private $title;
  39.     /**
  40.      * @ORM\Column(type="text", nullable=true)
  41.      */
  42.     private $description;
  43.     /**
  44.      * @ORM\Column(type="text", nullable=true)
  45.      */
  46.     private $intro;
  47.     /**
  48.      * @ORM\Column(type="text", nullable=true)
  49.      */
  50.     private $info;
  51.     public function getId(): ?int
  52.     {
  53.         return $this->id;
  54.     }
  55.     public function getSlug(): ?string
  56.     {
  57.         return $this->slug;
  58.     }
  59.     public function setSlug(?string $slug): self
  60.     {
  61.         $this->slug $slug;
  62.         return $this;
  63.     }
  64.     public function getTitle(): ?string
  65.     {
  66.         return $this->title;
  67.     }
  68.     public function setTitle(?string $title): self
  69.     {
  70.         $this->title $title;
  71.         return $this;
  72.     }
  73.     public function getDescription(): ?string
  74.     {
  75.         return $this->description;
  76.     }
  77.     public function setDescription(?string $description): self
  78.     {
  79.         $this->description $description;
  80.         return $this;
  81.     }
  82.     public function getMetaTitle(): ?string
  83.     {
  84.         return $this->metaTitle;
  85.     }
  86.     public function setMetaTitle(?string $metaTitle): self
  87.     {
  88.         $this->metaTitle $metaTitle;
  89.         return $this;
  90.     }
  91.     public function getMetaDescription(): ?string
  92.     {
  93.         return $this->metaDescription;
  94.     }
  95.     public function setMetaDescription(?string $metaDescription): self
  96.     {
  97.         $this->metaDescription $metaDescription;
  98.         return $this;
  99.     }
  100.     public function getIntro(): ?string
  101.     {
  102.         return $this->intro;
  103.     }
  104.     public function setIntro(?string $intro): self
  105.     {
  106.         $this->intro $intro;
  107.         return $this;
  108.     }
  109.     public function getInfo(): ?string
  110.     {
  111.         return $this->info;
  112.     }
  113.     public function setInfo(?string $info): self
  114.     {
  115.         $this->info $info;
  116.         return $this;
  117.     }
  118. }