src/Entity/FilmProjectSponsor.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FilmProjectSponsorRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\HttpFoundation\File\File;
  6. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  7. #[ORM\Entity(repositoryClassFilmProjectSponsorRepository::class)]
  8. #[Vich\Uploadable]
  9. class FilmProjectSponsor
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $name null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $logo null;
  19.     #[Vich\UploadableField(mapping:'project_gallery_images'fileNameProperty:'logo')]
  20.     private $imageFile;
  21.     #[ORM\ManyToOne(inversedBy'filmProjectSponsors')]
  22.     private ?FilmProject $filmProject null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $logoUrl null;
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getName(): ?string
  30.     {
  31.         return $this->name;
  32.     }
  33.     public function setName(?string $name): self
  34.     {
  35.         $this->name $name;
  36.         return $this;
  37.     }
  38.     public function getLogo(): ?string
  39.     {
  40.         return $this->logo;
  41.     }
  42.     public function setLogo(?string $logo): self
  43.     {
  44.         $this->logo $logo;
  45.         return $this;
  46.     }
  47.     public function getFilmProject(): ?FilmProject
  48.     {
  49.         return $this->filmProject;
  50.     }
  51.     public function setFilmProject(?FilmProject $filmProject): self
  52.     {
  53.         $this->filmProject $filmProject;
  54.         return $this;
  55.     }
  56.     public function getImageFile()
  57.     {
  58.         return $this->imageFile;
  59.     }
  60.     public function setImageFile(File $image null)
  61.     {
  62.         $this->imageFile $image;
  63.         if ($image) {
  64.             $this->logo $image->getFileName();
  65.         }
  66.     }
  67.     public function getImageUrl(): ?string
  68.     {
  69.         $url '';
  70.         if ($this->logo) {
  71.             $url '/uploads/projects/' $this->logo;
  72.         }
  73.         return $url;
  74.     }
  75.     public function getLogoUrl(): ?string
  76.     {
  77.         return $this->logoUrl;
  78.     }
  79.     public function setLogoUrl(?string $logoUrl): self
  80.     {
  81.         $this->logoUrl $logoUrl;
  82.         return $this;
  83.     }
  84.     public function __toString()
  85.     {
  86.         return $this->name;
  87.     }
  88. }