src/Entity/Um6p/MediaEvent.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Um6p;
  3. use App\Repository\Um6p\MediaEventRepository;
  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=MediaEventRepository::class)
  11.  * @Vich\Uploadable
  12.  */
  13. class MediaEvent
  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.      * @ORM\Column(type="boolean", nullable=true)
  39.      */
  40.     private $isopen;
  41.     /**
  42.      * @ORM\ManyToOne(targetEntity=Event::class, inversedBy="medias", cascade={"persist"})
  43.      */
  44.     private $event;
  45.     /**
  46.      * @Gedmo\Timestampable(on="create")
  47.      * @ORM\Column(type="datetime", nullable=true)
  48.      */
  49.     private $created_at;
  50.     /**
  51.      * @Gedmo\Timestampable(on="update")
  52.      * @ORM\Column(type="datetime", nullable=true)
  53.      */
  54.     private $updated_at;
  55.     /**
  56.      * @Vich\UploadableField(mapping="media_event_image", fileNameProperty="image")
  57.      * @var File
  58.      */
  59.     private $imageFile;
  60.     
  61.     public function __toString(){
  62.         return $this->image;
  63.     }
  64.     public function getId(): ?int
  65.     {
  66.         return $this->id;
  67.     }
  68.     public function getImage(): ?string
  69.     {
  70.         return $this->image;
  71.     }
  72.     public function setImage(?string $image): self
  73.     {
  74.         $this->image $image;
  75.         return $this;
  76.     }
  77.     public function getLink(): ?string
  78.     {
  79.         return $this->link;
  80.     }
  81.     public function setLink(?string $link): self
  82.     {
  83.         $this->link $link;
  84.         return $this;
  85.     }
  86.     public function getPosition(): ?int
  87.     {
  88.         return $this->position;
  89.     }
  90.     public function setPosition(?int $position): self
  91.     {
  92.         $this->position $position;
  93.         return $this;
  94.     }
  95.     public function isPublier(): ?bool
  96.     {
  97.         return $this->publier;
  98.     }
  99.     public function setPublier(?bool $publier): self
  100.     {
  101.         $this->publier $publier;
  102.         return $this;
  103.     }
  104.     public function isIsopen(): ?bool
  105.     {
  106.         return $this->isopen;
  107.     }
  108.     public function setIsopen(?bool $isopen): self
  109.     {
  110.         $this->isopen $isopen;
  111.         return $this;
  112.     }
  113.     public function getEvent(): ?Event
  114.     {
  115.         return $this->event;
  116.     }
  117.     public function setEvent(?Event $event): self
  118.     {
  119.         $this->event $event;
  120.         return $this;
  121.     }
  122.     public function setImageFile(File $image null)
  123.     {
  124.         $this->imageFile $image;
  125.         if ($image) {
  126.             $this->updated_at = new \DateTime('now');
  127.         }
  128.         return $this;
  129.     }
  130.     public function getImageFile()
  131.     {
  132.         return $this->imageFile;
  133.     }
  134.     public function getCreatedAt(): ?\DateTimeInterface
  135.     {
  136.         return $this->created_at;
  137.     }
  138.     public function setCreatedAt(?\DateTimeInterface $created_at): self
  139.     {
  140.         $this->created_at $created_at;
  141.         return $this;
  142.     }
  143.     public function getUpdatedAt(): ?\DateTimeInterface
  144.     {
  145.         return $this->updated_at;
  146.     }
  147.     public function setUpdatedAt(?\DateTimeInterface $updated_at): self
  148.     {
  149.         $this->updated_at $updated_at;
  150.         return $this;
  151.     }
  152. }