164 lines
3.3 KiB
PHP
164 lines
3.3 KiB
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Entity\Helpers\TrackedTrait;
|
|
use App\Repository\SnipRepository;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use Doctrine\Common\Collections\Collection;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
#[ORM\Entity(repositoryClass: SnipRepository::class)]
|
|
class Snip
|
|
{
|
|
use TrackedTrait;
|
|
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\Column(length: 255)]
|
|
private ?string $name = null;
|
|
|
|
#[ORM\Column]
|
|
private bool $public = false;
|
|
|
|
#[ORM\OneToMany(mappedBy: 'snip', targetEntity: SnipContent::class, orphanRemoval: true)]
|
|
private Collection $snipContents;
|
|
|
|
#[ORM\OneToOne]
|
|
private ?SnipContent $activeVersion = null;
|
|
|
|
#[ORM\Column(length: 255)]
|
|
private ?string $parser = null;
|
|
|
|
#[ORM\Column]
|
|
private bool $visible = true;
|
|
|
|
#[ORM\Column]
|
|
private bool $archived = false;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->snipContents = new ArrayCollection();
|
|
}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return $this->name ?? '';
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getName(): ?string
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
public function setName(string $name): self
|
|
{
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function isPublic(): ?bool
|
|
{
|
|
return $this->public;
|
|
}
|
|
|
|
public function setPublic(bool $public): self
|
|
{
|
|
$this->public = $public;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Collection<int, SnipContent>
|
|
*/
|
|
public function getSnipContents(): Collection
|
|
{
|
|
return $this->snipContents;
|
|
}
|
|
|
|
public function addSnipContent(SnipContent $snipContent): self
|
|
{
|
|
if (!$this->snipContents->contains($snipContent)) {
|
|
$this->snipContents->add($snipContent);
|
|
$snipContent->setSnip($this);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function removeSnipContent(SnipContent $snipContent): self
|
|
{
|
|
if ($this->snipContents->removeElement($snipContent)) {
|
|
// set the owning side to null (unless already changed)
|
|
if ($snipContent->getSnip() === $this) {
|
|
$snipContent->setSnip(null);
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getLatestVersion(): ?SnipContent
|
|
{
|
|
return $this->snipContents->last() ?: null;
|
|
}
|
|
|
|
public function getActiveVersion(): ?SnipContent
|
|
{
|
|
return $this->activeVersion;
|
|
}
|
|
|
|
public function setActiveVersion(?SnipContent $activeVersion): static
|
|
{
|
|
$this->activeVersion = $activeVersion;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getParser(): ?string
|
|
{
|
|
return $this->parser;
|
|
}
|
|
|
|
public function setParser(string $parser): static
|
|
{
|
|
$this->parser = $parser;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function isVisible(): ?bool
|
|
{
|
|
return $this->visible;
|
|
}
|
|
|
|
public function setVisible(bool $visible): static
|
|
{
|
|
$this->visible = $visible;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function isArchived(): ?bool
|
|
{
|
|
return $this->archived;
|
|
}
|
|
|
|
public function setArchived(bool $archived): static
|
|
{
|
|
$this->archived = $archived;
|
|
|
|
return $this;
|
|
}
|
|
}
|