") * @Serializer\SerializedName("metaFields") * @Serializer\Accessor(getter="getVisibleMetaFields") * * @ORM\OneToMany(targetEntity="App\Entity\ProjectMeta", mappedBy="project", cascade={"persist"}) */ private $meta; /** * Teams * * If no team is assigned, everyone can access the project (also depends on the teams of the customer) * * @var Team[]|ArrayCollection * * @Serializer\Expose() * @Serializer\Groups({"Project"}) * @SWG\Property(type="array", @SWG\Items(ref="#/definitions/Team")) * * @ORM\ManyToMany(targetEntity="Team", cascade={"persist"}, inversedBy="projects") * @ORM\JoinTable( * name="kimai2_projects_teams", * joinColumns={ * @ORM\JoinColumn(name="project_id", referencedColumnName="id", onDelete="CASCADE") * }, * inverseJoinColumns={ * @ORM\JoinColumn(name="team_id", referencedColumnName="id", onDelete="CASCADE") * } * ) */ private $teams; /** * @var string|null * * @ORM\Column(name="invoice_text", type="text", nullable=true) */ private $invoiceText; /** * Whether this project allows booking of global activities * * @var bool * * @ORM\Column(name="global_activities", type="boolean", nullable=false, options={"default": true}) * @Assert\NotNull() */ private $globalActivities = true; public function __construct() { $this->meta = new ArrayCollection(); $this->teams = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getCustomer(): ?Customer { return $this->customer; } public function setCustomer(Customer $customer): Project { $this->customer = $customer; return $this; } public function setName(string $name): Project { $this->name = $name; return $this; } public function getName(): ?string { return $this->name; } public function setComment(?string $comment): Project { $this->comment = $comment; return $this; } public function getComment(): ?string { return $this->comment; } public function setVisible(bool $visible): Project { $this->visible = $visible; return $this; } public function isVisible(): bool { return $this->visible; } public function setBillable(bool $billable): void { $this->billable = $billable; } public function isBillable(): bool { return $this->billable; } public function getOrderNumber(): ?string { return $this->orderNumber; } public function setOrderNumber(?string $orderNumber): Project { $this->orderNumber = $orderNumber; return $this; } /** * Make sure begin and end date have the correct timezone. * This will be called once for each item after being loaded from the database. */ protected function localizeDates() { if ($this->localized) { return; } if (null === $this->timezone) { $this->timezone = date_default_timezone_get(); } $timezone = new \DateTimeZone($this->timezone); if (null !== $this->orderDate) { $this->orderDate->setTimeZone($timezone); } if (null !== $this->start) { $this->start->setTimeZone($timezone); } if (null !== $this->end) { $this->end->setTimeZone($timezone); } $this->localized = true; } public function getOrderDate(): ?\DateTime { $this->localizeDates(); return $this->orderDate; } public function setOrderDate(?\DateTime $orderDate): Project { $this->orderDate = $orderDate; if (null !== $orderDate) { $this->timezone = $orderDate->getTimezone()->getName(); } return $this; } public function getStart(): ?\DateTime { $this->localizeDates(); return $this->start; } public function setStart(?\DateTime $start): Project { $this->start = $start; if (null !== $start) { $this->timezone = $start->getTimezone()->getName(); } return $this; } public function getEnd(): ?\DateTime { $this->localizeDates(); return $this->end; } public function setEnd(?\DateTime $end): Project { $this->end = $end; if (null !== $end) { $this->timezone = $end->getTimezone()->getName(); } return $this; } public function isGlobalActivities(): bool { return $this->globalActivities; } public function setGlobalActivities(bool $globalActivities): void { $this->globalActivities = $globalActivities; } /** * @return Collection|MetaTableTypeInterface[] */ public function getMetaFields(): Collection { return $this->meta; } /** * @return MetaTableTypeInterface[] */ public function getVisibleMetaFields(): array { $all = []; foreach ($this->meta as $meta) { if ($meta->isVisible()) { $all[] = $meta; } } return $all; } public function getMetaField(string $name): ?MetaTableTypeInterface { foreach ($this->meta as $field) { if (strtolower($field->getName()) === strtolower($name)) { return $field; } } return null; } /** * @param string $name * @return bool|int|string|null */ public function getMetaFieldValue(string $name) { $field = $this->getMetaField($name); if ($field === null) { return null; } return $field->getValue(); } public function setMetaField(MetaTableTypeInterface $meta): EntityWithMetaFields { if (null === ($current = $this->getMetaField($meta->getName()))) { $meta->setEntity($this); $this->meta->add($meta); return $this; } $current->merge($meta); return $this; } public function addTeam(Team $team) { if ($this->teams->contains($team)) { return; } $this->teams->add($team); $team->addProject($this); } public function removeTeam(Team $team) { if (!$this->teams->contains($team)) { return; } $this->teams->removeElement($team); $team->removeProject($this); } /** * @return Collection */ public function getTeams(): Collection { return $this->teams; } public function isVisibleAtDate(\DateTime $dateTime): bool { if (!$this->isVisible()) { return false; } if ($this->getCustomer() !== null && !$this->getCustomer()->isVisible()) { return false; } if ($this->getStart() !== null && $dateTime < $this->getStart()) { return false; } if ($this->getEnd() !== null && $dateTime > $this->getEnd()) { return false; } return true; } public function getInvoiceText(): ?string { return $this->invoiceText; } public function setInvoiceText(?string $invoiceText): void { $this->invoiceText = $invoiceText; } /** * @return string */ public function __toString() { return $this->getName(); } public function __clone() { if ($this->id) { $this->id = null; } $currentTeams = $this->teams; $this->teams = new ArrayCollection(); /** @var Team $team */ foreach ($currentTeams as $team) { $this->addTeam($team); } $currentMeta = $this->meta; $this->meta = new ArrayCollection(); /** @var ProjectMeta $meta */ foreach ($currentMeta as $meta) { $newMeta = clone $meta; $newMeta->setEntity($this); $this->setMetaField($newMeta); } } }