src/Entity/SwitcherTranslation.php line 21

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SwitcherTranslationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Mapping\Annotation as Gedmo;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. use Symfony\Component\HttpFoundation\File\File;
  8. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  9. use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
  10. use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
  11. /**
  12.  * @ORM\Entity(repositoryClass=SwitcherTranslationRepository::class)
  13.  * @Vich\Uploadable
  14.  */
  15. class SwitcherTranslation implements TranslationInterface
  16.     use TranslationTrait;
  17.     /**
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue
  20.      * @ORM\Column(type="integer")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @ORM\Column(type="string", length=255, nullable=true)
  25.      */
  26.     private $titre;
  27.     /**
  28.      * @ORM\Column(type="string", length=255, nullable=true)
  29.      */
  30.     private $link;
  31.     /**
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     private $image;
  35.     /**
  36.      * @Gedmo\Timestampable(on="create")
  37.      * @ORM\Column(type="datetime", nullable=true)
  38.      */
  39.     private $created_at;
  40.     /**
  41.      * @Gedmo\Timestampable(on="update")
  42.      * @ORM\Column(type="datetime", nullable=true)
  43.      */
  44.     private $updated_at;
  45.  
  46.     /**
  47.      * @Vich\UploadableField(mapping="switcher_image", fileNameProperty="image")
  48.      * @var File
  49.      */
  50.     private $imageFile;
  51.     public function getId(): ?int
  52.     {
  53.         return $this->id;
  54.     }
  55.     public function getTitre(): ?string
  56.     {
  57.         return $this->titre;
  58.     }
  59.     public function setTitre(?string $titre): self
  60.     {
  61.         $this->titre $titre;
  62.         return $this;
  63.     }
  64.     public function getLink(): ?string
  65.     {
  66.         return $this->link;
  67.     }
  68.     public function setLink(?string $link): self
  69.     {
  70.         $this->link $link;
  71.         return $this;
  72.     }
  73.     public function getImage(): ?string
  74.     {
  75.         return $this->image;
  76.     }
  77.     public function setImage(?string $image): self
  78.     {
  79.         $this->image $image;
  80.         return $this;
  81.     }
  82.     public function getCreatedAt(): ?\DateTimeInterface
  83.     {
  84.         return $this->created_at;
  85.     }
  86.     public function setCreatedAt(?\DateTimeInterface $created_at): self
  87.     {
  88.         $this->created_at $created_at;
  89.         return $this;
  90.     }
  91.     public function getUpdatedAt(): ?\DateTimeInterface
  92.     {
  93.         return $this->updated_at;
  94.     }
  95.     public function setUpdatedAt(?\DateTimeInterface $updated_at): self
  96.     {
  97.         $this->updated_at $updated_at;
  98.         return $this;
  99.     } 
  100.     public function setImageFile(File $image null)
  101.     {
  102.         $this->imageFile $image;
  103.         if ($image) {
  104.             $this->updated_at = new \DateTime('now');
  105.         }
  106.         return $this;
  107.     }
  108.     public function getImageFile()
  109.     {
  110.         return $this->imageFile;
  111.     }
  112. }