src/Entity/Event.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EventRepository;
  4. use App\String\Constant;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassEventRepository::class)]
  7. class Event
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column(type'integer')]
  12.     private $id;
  13.     #[ORM\Column(type'string'length255nullabletrue)]
  14.     private $name;
  15.     #[ORM\Column(type'date'nullabletrue)]
  16.     private $startDate;
  17.     #[ORM\Column(type'date'nullabletrue)]
  18.     private $endDate;
  19.     #[ORM\Column(type'time'nullabletrue)]
  20.     private $startTime;
  21.     #[ORM\Column(type'time'nullabletrue)]
  22.     private $endTime;
  23.     #[ORM\Column(type'string'length255nullabletrue)]
  24.     private $thubmnail;
  25.     #[ORM\Column(type'string'length255nullabletrue)]
  26.     private $ticketUrl;
  27.     #[ORM\Column(type'array'nullabletrue)]
  28.     private $issueAreas = [];
  29.     #[ORM\Column(type'text'nullabletrue)]
  30.     private $description;
  31.     #[ORM\Column(type'integer'nullabletrue)]
  32.     private $wordpressId;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $eventRsvpInfo null;
  35.     #[ORM\Column(nullabletrue)]
  36.     private ?bool $isOnline null;
  37.     #[ORM\Column(length255nullabletrue)]
  38.     private ?string $address null;
  39.     #[ORM\Column(length255nullabletrue)]
  40.     private ?string $city null;
  41.     #[ORM\Column(length255nullabletrue)]
  42.     private ?string $state null;
  43.     #[ORM\Column(length255nullabletrue)]
  44.     private ?string $country null;
  45.     public function getId(): ?int
  46.     {
  47.         return $this->id;
  48.     }
  49.     public function getName(): ?string
  50.     {
  51.         return $this->name;
  52.     }
  53.     public function setName(?string $name): self
  54.     {
  55.         $this->name $name;
  56.         return $this;
  57.     }
  58.     public function getStartDate(): ?\DateTimeInterface
  59.     {
  60.         return $this->startDate;
  61.     }
  62.     public function setStartDate(?\DateTimeInterface $startDate): self
  63.     {
  64.         $this->startDate $startDate;
  65.         return $this;
  66.     }
  67.     public function getEndDate(): ?\DateTimeInterface
  68.     {
  69.         return $this->endDate;
  70.     }
  71.     public function setEndDate(?\DateTimeInterface $endDate): self
  72.     {
  73.         $this->endDate $endDate;
  74.         return $this;
  75.     }
  76.     public function getStartTime(): ?\DateTimeInterface
  77.     {
  78.         return $this->startTime;
  79.     }
  80.     public function setStartTime(?\DateTimeInterface $startTime): self
  81.     {
  82.         $this->startTime $startTime;
  83.         return $this;
  84.     }
  85.     public function getEndTime(): ?\DateTimeInterface
  86.     {
  87.         return $this->endTime;
  88.     }
  89.     public function setEndTime(?\DateTimeInterface $endTime): self
  90.     {
  91.         $this->endTime $endTime;
  92.         return $this;
  93.     }
  94.     public function getThubmnail(): ?string
  95.     {
  96.         return $this->thubmnail;
  97.     }
  98.     public function setThubmnail(?string $thubmnail): self
  99.     {
  100.         $this->thubmnail $thubmnail;
  101.         return $this;
  102.     }
  103.     public function getThumbnailUrl(): ?string
  104.     {
  105.         $url '';
  106.         if ($this->thubmnail) {
  107.             $url '/uploads/events/' $this->thubmnail;
  108.         }
  109.         return $url;
  110.     }
  111.     public function getTicketUrl(): ?string
  112.     {
  113.         return $this->ticketUrl;
  114.     }
  115.     public function setTicketUrl(?string $ticketUrl): self
  116.     {
  117.         $this->ticketUrl $ticketUrl;
  118.         return $this;
  119.     }
  120.     public function getIssueAreas(): ?array
  121.     {
  122.         return $this->issueAreas;
  123.     }
  124.     public function setIssueAreas(?array $issueAreas): self
  125.     {
  126.         $this->issueAreas $issueAreas;
  127.         return $this;
  128.     }
  129.     public function getDescription(): ?string
  130.     {
  131.         return $this->description;
  132.     }
  133.     public function setDescription(?string $description): self
  134.     {
  135.         $this->description $description;
  136.         return $this;
  137.     }
  138.     public function getWordpressId(): ?int
  139.     {
  140.         return $this->wordpressId;
  141.     }
  142.     public function setWordpressId(?int $wordpressId): self
  143.     {
  144.         $this->wordpressId $wordpressId;
  145.         return $this;
  146.     }
  147.     public function getWordpressUrl(): string
  148.     {
  149.         $url '';
  150.         if ($this->wordpressId) {
  151.             $url Constant::WORDPRESS_URL '/?page_id='$this->wordpressId;
  152.         }
  153.         return $url;
  154.     }
  155.     public function getEventRsvpInfo(): ?string
  156.     {
  157.         return $this->eventRsvpInfo;
  158.     }
  159.     public function setEventRsvpInfo(?string $eventRsvpInfo): self
  160.     {
  161.         $this->eventRsvpInfo $eventRsvpInfo;
  162.         return $this;
  163.     }
  164.     public function isIsOnline(): ?bool
  165.     {
  166.         return $this->isOnline;
  167.     }
  168.     public function setIsOnline(?bool $isOnline): self
  169.     {
  170.         $this->isOnline $isOnline;
  171.         return $this;
  172.     }
  173.     public function getAddress(): ?string
  174.     {
  175.         return $this->address;
  176.     }
  177.     public function setAddress(?string $address): self
  178.     {
  179.         $this->address $address;
  180.         return $this;
  181.     }
  182.     public function getCity(): ?string
  183.     {
  184.         return $this->city;
  185.     }
  186.     public function setCity(?string $city): self
  187.     {
  188.         $this->city $city;
  189.         return $this;
  190.     }
  191.     public function getState(): ?string
  192.     {
  193.         return $this->state;
  194.     }
  195.     public function setState(?string $state): self
  196.     {
  197.         $this->state $state;
  198.         return $this;
  199.     }
  200.     public function getCountry(): ?string
  201.     {
  202.         return $this->country;
  203.     }
  204.     public function setCountry(?string $country): self
  205.     {
  206.         $this->country $country;
  207.         return $this;
  208.     }
  209.     public function getEventDateStatus(): ?bool
  210.     {
  211.         $today = new \DateTime('today');
  212.         if ($today $this->endDate) {
  213.             return false;
  214.         }
  215.         return true;
  216.     }
  217. }