src/Entity/Project.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProjectRepository;
  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. use Symfony\Component\Serializer\Annotation\Groups;
  9. #[ORM\Entity(repositoryClassProjectRepository::class)]
  10. class Project
  11. {
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column]
  15.     private ?int $id null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $name null;
  18.     #[ORM\Column]
  19.     private ?\DateTimeImmutable $createdAt null;
  20.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  21.     private ?string $brief null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $preview_image null;
  24.     #[ORM\Column]
  25.     private ?bool $isFinish null;
  26.     #[ORM\Column(nullabletrue)]
  27.     private ?\DateTimeImmutable $updatedAt null;
  28.     #[ORM\ManyToOne]
  29.     private ?Status $status null;
  30.     #[ORM\OneToMany(mappedBy'project'targetEntityProjectDeliverable::class, cascade: ['persist','remove'])]
  31.     private Collection $projectDeliverables;
  32.     #[ORM\ManyToMany(targetEntityUser::class, inversedBy'projects')]
  33.     private Collection $user;
  34.     #[ORM\OneToMany(mappedBy'projet'targetEntityLogs::class, cascade:['remove'])]
  35.     #[ORM\OrderBy(['createdAt'=>'DESC'])]
  36.     private Collection $logs;
  37.     #[ORM\ManyToMany(targetEntityUser::class, inversedBy'adminProjects')]
  38.     #[ORM\JoinTable('project_admin')]
  39.     private Collection $admin;
  40.     #[ORM\ManyToMany(targetEntityUser::class, inversedBy'contact')]
  41.     #[ORM\JoinTable('project_contact')]
  42.     private Collection $contact;
  43.     #[ORM\Column]
  44.     private ?bool $notification_active null;
  45.     public function __construct()
  46.     {
  47.         $this->projectDeliverables = new ArrayCollection();
  48.         $this->user = new ArrayCollection();
  49.         $this->logs = new ArrayCollection();
  50.         $this->admin = new ArrayCollection();
  51.         $this->contact = new ArrayCollection();
  52.     }
  53.     public function getId(): ?int
  54.     {
  55.         return $this->id;
  56.     }
  57.     public function getName(): ?string
  58.     {
  59.         return $this->name;
  60.     }
  61.     public function setName(string $name): self
  62.     {
  63.         $this->name $name;
  64.         return $this;
  65.     }
  66.     public function getCreatedAt(): ?\DateTimeImmutable
  67.     {
  68.         return $this->createdAt;
  69.     }
  70.     public function setCreatedAt(\DateTimeImmutable $createdAt): self
  71.     {
  72.         $this->createdAt $createdAt;
  73.         return $this;
  74.     }
  75.     public function getBrief(): ?string
  76.     {
  77.         return $this->brief;
  78.     }
  79.     public function setBrief(?string $brief): self
  80.     {
  81.         $this->brief $brief;
  82.         return $this;
  83.     }
  84.     public function getPreviewImage(): ?string
  85.     {
  86.         return $this->preview_image;
  87.     }
  88.     public function setPreviewImage(?string $preview_image): self
  89.     {
  90.         $this->preview_image $preview_image;
  91.         return $this;
  92.     }
  93.     public function isIsFinish(): ?bool
  94.     {
  95.         return $this->isFinish;
  96.     }
  97.     public function setIsFinish(bool $isFinish): self
  98.     {
  99.         $this->isFinish $isFinish;
  100.         return $this;
  101.     }
  102.     public function getUpdatedAt(): ?\DateTimeImmutable
  103.     {
  104.         return $this->updatedAt;
  105.     }
  106.     public function setUpdatedAt(?\DateTimeImmutable $updatedAt): self
  107.     {
  108.         $this->updatedAt $updatedAt;
  109.         return $this;
  110.     }
  111.     public function getStatus(): ?Status
  112.     {
  113.         return $this->status;
  114.     }
  115.     public function setStatus(?Status $status): self
  116.     {
  117.         $this->status $status;
  118.         return $this;
  119.     }
  120.     /**
  121.      * @return Collection<int, ProjectDeliverable>
  122.      */
  123.     public function getProjectDeliverables(): Collection
  124.     {
  125.         return $this->projectDeliverables;
  126.     }
  127.     public function addProjectDeliverable(ProjectDeliverable $projectDeliverable): self
  128.     {
  129.         if (!$this->projectDeliverables->contains($projectDeliverable)) {
  130.             $this->projectDeliverables->add($projectDeliverable);
  131.             $projectDeliverable->setProject($this);
  132.         }
  133.         return $this;
  134.     }
  135.     public function removeProjectDeliverable(ProjectDeliverable $projectDeliverable): self
  136.     {
  137.         if ($this->projectDeliverables->removeElement($projectDeliverable)) {
  138.             // set the owning side to null (unless already changed)
  139.             if ($projectDeliverable->getProject() === $this) {
  140.                 $projectDeliverable->setProject(null);
  141.             }
  142.         }
  143.         return $this;
  144.     }
  145.     /**
  146.      * @return Collection<int, User>
  147.      */
  148.     public function getUser(): Collection
  149.     {
  150.         return $this->user;
  151.     }
  152.     public function addUser(User $user): self
  153.     {
  154.         if (!$this->user->contains($user)) {
  155.             $this->user->add($user);
  156.         }
  157.         return $this;
  158.     }
  159.     public function removeUser(User $user): self
  160.     {
  161.         $this->user->removeElement($user);
  162.         return $this;
  163.     }
  164.     /**
  165.      * @return Collection<int, Logs>
  166.      */
  167.     public function getLogs(): Collection
  168.     {
  169.         return $this->logs;
  170.     }
  171.     public function addLog(Logs $log): self
  172.     {
  173.         if (!$this->logs->contains($log)) {
  174.             $this->logs->add($log);
  175.             $log->setProjet($this);
  176.         }
  177.         return $this;
  178.     }
  179.     public function removeLog(Logs $log): self
  180.     {
  181.         if ($this->logs->removeElement($log)) {
  182.             // set the owning side to null (unless already changed)
  183.             if ($log->getProjet() === $this) {
  184.                 $log->setProjet(null);
  185.             }
  186.         }
  187.         return $this;
  188.     }
  189.     /**
  190.      * @return Collection<int, User>
  191.      */
  192.     public function getAdmin(): Collection
  193.     {
  194.         return $this->admin;
  195.     }
  196.     public function addAdmin(User $admin): self
  197.     {
  198.         if (!$this->admin->contains($admin)) {
  199.             $this->admin->add($admin);
  200.         }
  201.         return $this;
  202.     }
  203.     public function removeAdmin(User $admin): self
  204.     {
  205.         $this->admin->removeElement($admin);
  206.         return $this;
  207.     }
  208.     /**
  209.      * @return Collection<int, User>
  210.      */
  211.     public function getContact(): Collection
  212.     {
  213.         return $this->contact;
  214.     }
  215.     public function addContact(User $contact): self
  216.     {
  217.         if (!$this->contact->contains($contact)) {
  218.             $this->contact->add($contact);
  219.         }
  220.         return $this;
  221.     }
  222.     public function removeContact(User $contact): self
  223.     {
  224.         $this->contact->removeElement($contact);
  225.         return $this;
  226.     }
  227.     public function isNotificationActive(): ?bool
  228.     {
  229.         return $this->notification_active;
  230.     }
  231.     public function setNotificationActive(bool $notification_active): self
  232.     {
  233.         $this->notification_active $notification_active;
  234.         return $this;
  235.     }
  236. }