|
@@ -64,6 +64,9 @@ class PublicEvent
|
|
|
#[ORM\Column(nullable: true)]
|
|
#[ORM\Column(nullable: true)]
|
|
|
private ?string $url;
|
|
private ?string $url;
|
|
|
|
|
|
|
|
|
|
+ #[ORM\Column(nullable: true)]
|
|
|
|
|
+ private ?string $helloAssoSlug;
|
|
|
|
|
+
|
|
|
#[ORM\Column(type: 'datetime')]
|
|
#[ORM\Column(type: 'datetime')]
|
|
|
private \DateTime $datetimeStart;
|
|
private \DateTime $datetimeStart;
|
|
|
|
|
|
|
@@ -199,6 +202,18 @@ class PublicEvent
|
|
|
return $this;
|
|
return $this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public function getHelloAssoSlug(): ?string
|
|
|
|
|
+ {
|
|
|
|
|
+ return $this->helloAssoSlug;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public function setHelloAssoSlug(?string $helloAssoSlug): PublicEvent
|
|
|
|
|
+ {
|
|
|
|
|
+ $this->helloAssoSlug = $helloAssoSlug;
|
|
|
|
|
+
|
|
|
|
|
+ return $this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public function getDatetimeStart(): \DateTime
|
|
public function getDatetimeStart(): \DateTime
|
|
|
{
|
|
{
|
|
|
return $this->datetimeStart;
|
|
return $this->datetimeStart;
|