src/Entity/Media.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\Event\Event;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use App\Repository\MediaRepository;
  7. use Gedmo\Timestampable\Traits\TimestampableEntity;
  8. #[ORM\Entity(repositoryClassMediaRepository::class)]
  9. class Media
  10. {
  11.     use TimestampableEntity;
  12.     const TYPE_HOME "home";
  13.     const TYPE_VIGNETTE "vignette";
  14.     const TYPE_VIGNETTE_LIST "vignette_list";
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $file null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $title null;
  23.     #[ORM\Column(length20nullabletrue)]
  24.     private ?string $extension null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $size null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $path null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $origin null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $originId null;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $type null;
  35.     #[ORM\Column(length20nullabletrue)]
  36.     private ?string $position null;
  37.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  38.     private ?\DateTimeInterface $deletedAt null;
  39.     #[ORM\ManyToOne(inversedBy'medias')]
  40.     #[ORM\JoinColumn(name"origin_id"referencedColumnName:"id")]
  41.     private ?Event $event null;
  42.     #[ORM\ManyToOne(inversedBy'medias')]
  43.     #[ORM\JoinColumn(name"origin_id"referencedColumnName"id")]
  44.     private ?HomeImage $homeImage null;
  45.     public function getId(): ?int
  46.     {
  47.         return $this->id;
  48.     }
  49.     public function getFile(): ?string
  50.     {
  51.         return $this->file;
  52.     }
  53.     public function setFile(?string $file): static
  54.     {
  55.         $this->file $file;
  56.         return $this;
  57.     }
  58.     public function getTitle(): ?string
  59.     {
  60.         return $this->title;
  61.     }
  62.     public function setTitle(?string $title): static
  63.     {
  64.         $this->title $title;
  65.         return $this;
  66.     }
  67.     public function getExtension(): ?string
  68.     {
  69.         return $this->extension;
  70.     }
  71.     public function setExtension(?string $extension): static
  72.     {
  73.         $this->extension $extension;
  74.         return $this;
  75.     }
  76.     public function getSize(): ?string
  77.     {
  78.         return $this->size;
  79.     }
  80.     public function setSize(?string $size): static
  81.     {
  82.         $this->size $size;
  83.         return $this;
  84.     }
  85.     public function getPath(): ?string
  86.     {
  87.         return $this->path;
  88.     }
  89.     public function setPath(?string $path): static
  90.     {
  91.         $this->path $path;
  92.         return $this;
  93.     }
  94.     public function getOrigin(): ?string
  95.     {
  96.         return $this->origin;
  97.     }
  98.     public function setOrigin(?string $origin): static
  99.     {
  100.         $this->origin $origin;
  101.         return $this;
  102.     }
  103.     public function getOriginId(): ?string
  104.     {
  105.         return $this->originId;
  106.     }
  107.     public function setOriginId(?string $originId): static
  108.     {
  109.         $this->originId $originId;
  110.         
  111.         return $this;
  112.     }
  113.     public function getType(): ?string
  114.     {
  115.         return $this->type;
  116.     }
  117.     public function setType(?string $type): static
  118.     {
  119.         $this->type $type;
  120.         return $this;
  121.     }
  122.     public function getPosition(): ?string
  123.     {
  124.         return $this->position;
  125.     }
  126.     public function setPosition(?string $position): static
  127.     {
  128.         $this->position $position;
  129.         return $this;
  130.     }
  131.     public function getDeletedAt(): ?\DateTimeInterface
  132.     {
  133.         return $this->deletedAt;
  134.     }
  135.     public function setDeletedAt(?\DateTimeInterface $deletedAt): static
  136.     {
  137.         $this->deletedAt $deletedAt;
  138.         return $this;
  139.     }
  140.     public function getEvent(): ?Event
  141.     {
  142.         return $this->event;
  143.     }
  144.     public function setEvent(?Event $event): static
  145.     {
  146.         $this->event $event;
  147.         return $this;
  148.     }
  149.     public function getHomeImage(): ?HomeImage
  150.     {
  151.         return $this->homeImage;
  152.     }
  153.     public function setHomeImage(?HomeImage $homeImage): static
  154.     {
  155.         $this->homeImage $homeImage;
  156.         return $this;
  157.     }
  158. }