src/Entity/Event.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EventRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassEventRepository::class)]
  9. class Event
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $title null;
  17.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  18.     private ?\DateTimeInterface $startDateTime null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $endDateTime null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $description null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  24.     private ?\DateTimeInterface $createdAt null;
  25.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  26.     private ?\DateTimeInterface $updatedAt null;
  27.     #[ORM\ManyToMany(targetEntityUser::class, inversedBy'events')]
  28.     private Collection $users;
  29.     #[ORM\Column(nullabletrue)]
  30.     private ?bool $all_day null;
  31.     #[ORM\Column(length10nullabletrue)]
  32.     private ?string $background_color null;
  33.     #[ORM\Column(length7nullabletrue)]
  34.     private ?string $border_color null;
  35.     #[ORM\Column(length7nullabletrue)]
  36.     private ?string $text_color null;
  37.     public function __construct()
  38.     {
  39.         $this->users = new ArrayCollection();
  40.     }
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getTitle(): ?string
  46.     {
  47.         return $this->title;
  48.     }
  49.     public function setTitle(?string $title): static
  50.     {
  51.         $this->title $title;
  52.         return $this;
  53.     }
  54.     public function getStartDateTime(): ?\DateTimeInterface
  55.     {
  56.         return $this->startDateTime;
  57.     }
  58.     public function setStartDateTime(?\DateTimeInterface $startDateTime): static
  59.     {
  60.         $this->startDateTime $startDateTime;
  61.         return $this;
  62.     }
  63.     public function getEndDateTime(): ?\DateTimeInterface
  64.     {
  65.         return $this->endDateTime;
  66.     }
  67.     public function setEndDateTime(?\DateTimeInterface $endDateTime): static
  68.     {
  69.         $this->endDateTime $endDateTime;
  70.         return $this;
  71.     }
  72.     public function getDescription(): ?string
  73.     {
  74.         return $this->description;
  75.     }
  76.     public function setDescription(?string $description): static
  77.     {
  78.         $this->description $description;
  79.         return $this;
  80.     }
  81.     public function getCreatedAt(): ?\DateTimeInterface
  82.     {
  83.         return $this->createdAt;
  84.     }
  85.     public function setCreatedAt(?\DateTimeInterface $createdAt): static
  86.     {
  87.         $this->createdAt $createdAt;
  88.         return $this;
  89.     }
  90.     public function getUpdatedAt(): ?\DateTimeInterface
  91.     {
  92.         return $this->updatedAt;
  93.     }
  94.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): static
  95.     {
  96.         $this->updatedAt $updatedAt;
  97.         return $this;
  98.     }
  99.     /**
  100.      * @return Collection<int, User>
  101.      */
  102.     public function getUsers(): Collection
  103.     {
  104.         return $this->users;
  105.     }
  106.     public function addUser(User $user): static
  107.     {
  108.         if (!$this->users->contains($user)) {
  109.             $this->users->add($user);
  110.         }
  111.         return $this;
  112.     }
  113.     public function removeUser(User $user): static
  114.     {
  115.         $this->users->removeElement($user);
  116.         return $this;
  117.     }
  118.     public function isAllDay(): ?bool
  119.     {
  120.         return $this->all_day;
  121.     }
  122.     public function setAllDay(?bool $all_day): static
  123.     {
  124.         $this->all_day $all_day;
  125.         return $this;
  126.     }
  127.     public function getBackgroundColor(): ?string
  128.     {
  129.         return $this->background_color;
  130.     }
  131.     public function setBackgroundColor(?string $background_color): static
  132.     {
  133.         $this->background_color $background_color;
  134.         return $this;
  135.     }
  136.     public function getBorderColor(): ?string
  137.     {
  138.         return $this->border_color;
  139.     }
  140.     public function setBorderColor(?string $border_color): static
  141.     {
  142.         $this->border_color $border_color;
  143.         return $this;
  144.     }
  145.     public function getTextColor(): ?string
  146.     {
  147.         return $this->text_color;
  148.     }
  149.     public function setTextColor(string $text_color): static
  150.     {
  151.         $this->text_color $text_color;
  152.         return $this;
  153.     }
  154. }