src/Entity/Um6p/MediaPhd.php line 17

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Um6p;
  3. use App\Repository\Um6p\MediaPhdRepository;
  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. /**
  10.  * @ORM\Entity(repositoryClass=MediaPhdRepository::class)
  11.  * @Vich\Uploadable
  12.  */
  13. class MediaPhd
  14. {
  15.     /**
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue
  18.      * @ORM\Column(type="integer")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\Column(type="string", length=255, nullable=true)
  23.      */
  24.     private $image;
  25.     /**
  26.      * @ORM\Column(type="string", length=255, nullable=true)
  27.      */
  28.     private $link;
  29.     /**
  30.      * @ORM\Column(type="integer", nullable=true)
  31.      */
  32.     private $position;
  33.     /**
  34.      * @ORM\Column(type="boolean", nullable=true)
  35.      */
  36.     private $publier;
  37.     /**
  38.      * @Gedmo\Timestampable(on="create")
  39.      * @ORM\Column(type="datetime", nullable=true)
  40.      */
  41.     private $created_at;
  42.     /**
  43.      * @Gedmo\Timestampable(on="update")
  44.      * @ORM\Column(type="datetime", nullable=true)
  45.      */
  46.     private $updated_at;
  47.     /**
  48.      * @Vich\UploadableField(mapping="media_phd_image", fileNameProperty="image")
  49.      * @var File
  50.      */
  51.     private $imageFile;
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getImage(): ?string
  57.     {
  58.         return $this->image;
  59.     }
  60.     public function setImage(?string $image): self
  61.     {
  62.         $this->image $image;
  63.         return $this;
  64.     }
  65.     public function getLink(): ?string
  66.     {
  67.         return $this->link;
  68.     }
  69.     public function setLink(?string $link): self
  70.     {
  71.         $this->link $link;
  72.         return $this;
  73.     }
  74.     public function getPosition(): ?int
  75.     {
  76.         return $this->position;
  77.     }
  78.     public function setPosition(?int $position): self
  79.     {
  80.         $this->position $position;
  81.         return $this;
  82.     }
  83.     public function isPublier(): ?bool
  84.     {
  85.         return $this->publier;
  86.     }
  87.     public function setPublier(?bool $publier): self
  88.     {
  89.         $this->publier $publier;
  90.         return $this;
  91.     }
  92.     public function setImageFile(File $image null)
  93.     {
  94.         $this->imageFile $image;
  95.         if ($image) {
  96.             $this->updated_at = new \DateTime('now');
  97.         }
  98.         return $this;
  99.     }
  100.     public function getImageFile()
  101.     {
  102.         return $this->imageFile;
  103.     }
  104.     public function getCreatedAt(): ?\DateTimeInterface
  105.     {
  106.         return $this->created_at;
  107.     }
  108.     public function setCreatedAt(?\DateTimeInterface $created_at): self
  109.     {
  110.         $this->created_at $created_at;
  111.         return $this;
  112.     }
  113.     public function getUpdatedAt(): ?\DateTimeInterface
  114.     {
  115.         return $this->updated_at;
  116.     }
  117.     public function setUpdatedAt(?\DateTimeInterface $updated_at): self
  118.     {
  119.         $this->updated_at $updated_at;
  120.         return $this;
  121.     }
  122.     
  123. }