src/Entity/ConfigurationItemParent.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\ConfigurationItemParentRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Symfony\Component\Serializer\Annotation\Groups;
  9. #[ApiResource(operations: [])]
  10. #[ORM\Entity(repositoryClassConfigurationItemParentRepository::class)]
  11. class ConfigurationItemParent extends ConfigurationItem
  12. {
  13.     #[ORM\OneToMany(mappedBy'parent'targetEntityConfigurationItem::class, cascade: ['persist''remove'])]
  14.     #[Groups(['configuration-item:read'])]
  15.     private Collection $nodes;
  16.     public function __construct(string $name null, array $values = [])
  17.     {
  18.         parent::__construct($name);
  19.         $this->nodes = new ArrayCollection();
  20.         foreach ($values as $node) {
  21.             $this->addNode($node);
  22.         }
  23.     }
  24.     /**
  25.      * @return Collection<int, ConfigurationItem>
  26.      */
  27.     public function getNodes(): Collection
  28.     {
  29.         return $this->nodes;
  30.     }
  31.     public function addNode(ConfigurationItem $node): self
  32.     {
  33.         if (!$this->nodes->contains($node)) {
  34.             $this->nodes->add($node);
  35.             $node->setParent($this);
  36.         }
  37.         return $this;
  38.     }
  39.     public function removeNode(ConfigurationItem $node): self
  40.     {
  41.         if ($this->nodes->removeElement($node)) {
  42.             // set the owning side to null (unless already changed)
  43.             if ($node->getParent() === $this) {
  44.                 $node->setParent(null);
  45.             }
  46.         }
  47.         return $this;
  48.     }
  49.     public function getData(): mixed
  50.     {
  51.         $data = [];
  52.         /** @var ConfigurationItem $item */
  53.         foreach ($this->getNodes() as $item) {
  54.             $data[$item->getName()] = $item->getData();
  55.         }
  56.         return $data;
  57.     }
  58.     public function setNodes(array $nodes = []): self
  59.     {
  60.         $this->nodes = new ArrayCollection($nodes);
  61.         return $this;
  62.     }
  63. }