src/Entity/Attachment.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\Order;
  4. use App\Entity\Bestandsoort;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  8. use Symfony\Component\HttpFoundation\File\File;
  9. #[ORM\Entity]
  10. #[Vich\Uploadable]
  11. class Attachment
  12. {
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\Column(length255nullable:true)]
  18.     private ?string $name null;
  19.     #[ORM\Column(type'integer'nullable:true)]
  20.     private ?int $size null;
  21.     #[Vich\UploadableField(mapping:'post_attachments'fileNameProperty:'name'size'size')]
  22.     private $attachmentFile;
  23.    
  24.  
  25.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  26.     private ?\DateTimeInterface $createdAt null;
  27.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  28.     private ?\DateTimeInterface $updatedAt null;
  29.     #[ORM\ManyToOne(targetEntity"Order"inversedBy'attachments')]
  30.     private ?order $orderid null;
  31.     #[ORM\Column]
  32.     private ?bool $uitgelicht null;
  33.     #[ORM\ManyToOne]
  34.     private ?bestandsoort $bestandsoort null;
  35.     public function __toString(): string
  36.     {
  37.         return $this->name;
  38.     }
  39.     public function __construct()
  40.     {
  41.         $this->createdAt = new \DateTime();
  42.         $this->updatedAt = new \DateTime();
  43.     }
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getName(): ?string
  49.     {
  50.         return $this->name;
  51.     }
  52.     public function setName(?string $name): self
  53.     {
  54.         $this->name $name;
  55.         return $this;
  56.     }
  57.     public function getPath(): ?string
  58.     {
  59.         return $this->path;
  60.     }
  61.     public function setPath(string $path): self
  62.     {
  63.         $this->path $path;
  64.         return $this;
  65.     }
  66.     public function getCreatedAt(): ?\DateTimeInterface
  67.     {
  68.         return $this->createdAt;
  69.     }
  70.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  71.     {
  72.         $this->createdAt $createdAt;
  73.         return $this;
  74.     }
  75.     public function getUpdatedAt(): ?\DateTimeInterface
  76.     {
  77.         return $this->updatedAt;
  78.     }
  79.     public function setUpdatedAt(\DateTimeInterface $updatedAt): self
  80.     {
  81.         $this->updatedAt $updatedAt;
  82.         return $this;
  83.     }
  84.     public function getOrderid(): ?order
  85.     {
  86.         return $this->orderid;
  87.     }
  88.     public function setOrderid(?order $orderid): self
  89.     {
  90.         $this->orderid $orderid;
  91.         return $this;
  92.     }
  93.     public function setAttachmentFile(?File $attachmentFile): void
  94.     {
  95.         $this->attachmentFile $attachmentFile;
  96.         if ($attachmentFile){
  97.             $this->updatedAt = new \DateTime();
  98.         }
  99.         
  100.       
  101.         
  102.     }
  103.    
  104.     public function getAttachmentFile(){
  105.         return $this->attachmentFile;
  106.     }
  107.     public function getSize(): ?int
  108.     {
  109.         return $this->size;
  110.     }
  111.     public function setSize(?int $size): self
  112.     {
  113.         $this->size $size;
  114.         return $this;
  115.     }
  116.     public function isUitgelicht(): ?bool
  117.     {
  118.         return $this->uitgelicht;
  119.     }
  120.     public function setUitgelicht(bool $uitgelicht): self
  121.     {
  122.         $this->uitgelicht $uitgelicht;
  123.         return $this;
  124.     }
  125.     public function getBestandsoort(): ?bestandsoort
  126.     {
  127.         return $this->bestandsoort;
  128.     }
  129.     public function setBestandsoort(?bestandsoort $bestandsoort): static
  130.     {
  131.         $this->bestandsoort $bestandsoort;
  132.         return $this;
  133.     }
  134. }