151 lines
3.1 KiB
PHP
151 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Repository\GroupRepository;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use Doctrine\Common\Collections\Collection;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
#[ORM\Entity(repositoryClass: GroupRepository::class)]
|
|
#[ORM\HasLifecycleCallbacks]
|
|
#[ORM\Table(name: 'groupe')]
|
|
class Group
|
|
{
|
|
public const ACTIVE = 'Actif';
|
|
public const INACTIVE = 'Inactif';
|
|
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\Column(length: 255)]
|
|
private ?string $title = null;
|
|
|
|
#[ORM\Column(type: 'text')]
|
|
private string $summary;
|
|
|
|
#[ORM\Column(type: 'text', nullable: true)]
|
|
private ?string $description = null;
|
|
|
|
#[ORM\Column]
|
|
private string $status;
|
|
|
|
#[ORM\Column(type: 'datetime', nullable: true)]
|
|
private ?\DateTimeInterface $dueDate = null;
|
|
|
|
/**
|
|
* @var Collection<int, User>
|
|
*/
|
|
#[ORM\ManyToMany(targetEntity: User::class, mappedBy: 'groups')]
|
|
private Collection $users;
|
|
|
|
/**
|
|
* @var Collection<int, GroupTimeline>
|
|
*/
|
|
#[ORM\OneToMany(mappedBy: 'group', targetEntity: GroupTimeline::class, cascade: ['remove'], orphanRemoval: true)]
|
|
#[ORM\OrderBy(['createdAt' => 'DESC'])]
|
|
private Collection $timelines;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->users = new ArrayCollection();
|
|
$this->timelines = new ArrayCollection();
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getTitle(): ?string
|
|
{
|
|
return $this->title;
|
|
}
|
|
|
|
public function setTitle(string $title): static
|
|
{
|
|
$this->title = $title;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getSummary(): string
|
|
{
|
|
return $this->summary;
|
|
}
|
|
|
|
public function setSummary(string $summary): static
|
|
{
|
|
$this->summary = $summary;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getDescription(): ?string
|
|
{
|
|
return $this->description;
|
|
}
|
|
|
|
public function setDescription(?string $description): static
|
|
{
|
|
$this->description = $description;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getStatus(): string
|
|
{
|
|
return $this->status;
|
|
}
|
|
|
|
public function setStatus(string $status): static
|
|
{
|
|
$this->status = $status;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getDueDate(): ?\DateTimeInterface
|
|
{
|
|
return $this->dueDate;
|
|
}
|
|
|
|
public function setDueDate(?\DateTimeInterface $dueDate): static
|
|
{
|
|
$this->dueDate = $dueDate;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getUsers(): Collection
|
|
{
|
|
return $this->users;
|
|
}
|
|
|
|
public function addUser(User $user): static
|
|
{
|
|
if (!$this->users->contains($user)) {
|
|
$this->users->add($user);
|
|
$user->addGroup($this);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function removeUser(User $user): static
|
|
{
|
|
if ($this->users->removeElement($user)) {
|
|
$user->removeGroup($this);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getTimelines(): Collection
|
|
{
|
|
return $this->timelines;
|
|
}
|
|
}
|