141 lines
2.9 KiB
PHP
141 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Repository\SnipContentRepository;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use Doctrine\Common\Collections\Collection;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Bridge\Doctrine\Types\UlidType;
|
|
use Symfony\Component\Uid\Ulid;
|
|
|
|
#[ORM\Entity(repositoryClass: SnipContentRepository::class)]
|
|
class SnipContent
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\Column(type: UlidType::NAME, unique: true)]
|
|
#[ORM\GeneratedValue(strategy: 'CUSTOM')]
|
|
#[ORM\CustomIdGenerator(class: 'doctrine.ulid_generator')]
|
|
private ?Ulid $id = null;
|
|
|
|
#[ORM\ManyToOne(inversedBy: 'snipContents')]
|
|
#[ORM\JoinColumn(nullable: false)]
|
|
private ?Snip $snip = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: self::class, inversedBy: 'children')]
|
|
private ?self $parent = null;
|
|
|
|
#[ORM\OneToMany(mappedBy: 'parent', targetEntity: self::class)]
|
|
private Collection $children;
|
|
|
|
#[ORM\Column(type: Types::TEXT, nullable: true)]
|
|
private ?string $text = null;
|
|
|
|
#[ORM\Column(nullable: true)]
|
|
private ?array $diff = null;
|
|
|
|
#[ORM\Column(length: 255, nullable: true)]
|
|
private ?string $name = null;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->children = new ArrayCollection();
|
|
}
|
|
|
|
public function getId(): ?Ulid
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getSnip(): ?Snip
|
|
{
|
|
return $this->snip;
|
|
}
|
|
|
|
public function setSnip(?Snip $snip): self
|
|
{
|
|
$this->snip = $snip;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getParent(): ?self
|
|
{
|
|
return $this->parent;
|
|
}
|
|
|
|
public function setParent(?self $parent): self
|
|
{
|
|
$this->parent = $parent;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Collection<int, self>
|
|
*/
|
|
public function getChildren(): Collection
|
|
{
|
|
return $this->children;
|
|
}
|
|
|
|
public function addChild(self $child): self
|
|
{
|
|
if (!$this->children->contains($child)) {
|
|
$this->children->add($child);
|
|
$child->setParent($this);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function removeChild(self $child): self
|
|
{
|
|
if ($this->children->removeElement($child)) {
|
|
// set the owning side to null (unless already changed)
|
|
if ($child->getParent() === $this) {
|
|
$child->setParent(null);
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getText(): ?string
|
|
{
|
|
return $this->text;
|
|
}
|
|
|
|
public function setText(?string $text): self
|
|
{
|
|
$this->text = $text;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getDiff(): ?array
|
|
{
|
|
return $this->diff;
|
|
}
|
|
|
|
public function setDiff(?array $diff): static
|
|
{
|
|
$this->diff = $diff;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getName(): ?string
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
public function setName(?string $name): static
|
|
{
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
}
|
|
}
|