src/Entity/ServiceCategories.php line 32

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ServiceCategoriesRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use ApiPlatform\Metadata\ApiResource;
  8. use ApiPlatform\Metadata\Get;
  9. use ApiPlatform\Metadata\GetCollection;
  10. use ApiPlatform\Metadata\Delete;
  11. use ApiPlatform\Metadata\Post;
  12. use ApiPlatform\Metadata\Patch;
  13. use ApiPlatform\Metadata\Put;
  14. use Symfony\Component\Serializer\Annotation\Groups;
  15. #[ORM\Entity(repositoryClassServiceCategoriesRepository::class)]
  16. #[ApiResource(
  17.     normalizationContext: ['groups' => ['serviceCategory:read']],
  18.     denormalizationContext: ['groups' => ['serviceCategory:write']],
  19.     operations: [
  20.         new Get(),
  21.         new Put(security'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
  22.         new Patch(security'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
  23.         new Delete(security'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")'),
  24.         new GetCollection(),
  25.         new Post(security'is_granted("ROLE_SUPER_ADMIN") or is_granted("ROLE_ADMIN")')
  26.     ],
  27.     paginationEnabledfalse
  28. )]
  29. class ServiceCategories
  30. {
  31.     #[ORM\Id]
  32.     #[ORM\GeneratedValue]
  33.     #[ORM\Column]
  34.     #[Groups(['generalInvoice:read''generalInvoiceDetail:read''invoice:read''invoiceDetail:read''service:read''serviceCategory:read'])]
  35.     private ?int $id null;
  36.     #[ORM\Column(length255)]
  37.     #[Groups(['generalInvoice:read''generalInvoiceDetail:read''invoice:read''invoiceDetail:read''service:read''serviceCategory:read''serviceCategory:write'])]
  38.     private ?string $name null;
  39.     #[ORM\Column(length255nullabletrue)]
  40.     #[Groups(['generalInvoice:read''generalInvoiceDetail:read''invoice:read''invoiceDetail:read''service:read''serviceCategory:read''serviceCategory:write'])]
  41.     private ?string $description null;
  42.     #[ORM\OneToMany(mappedBy'serviceCategories'targetEntityGeneralInvoiceDetail::class)]
  43.     private Collection $generalInvoiceDetails;
  44.     #[ORM\OneToMany(mappedBy'serviceCategories'targetEntityServices::class)]
  45.     private Collection $services;
  46.     public function __construct()
  47.     {
  48.         $this->services = new ArrayCollection();
  49.         $this->generalInvoiceDetails = new ArrayCollection();
  50.     }
  51.     public function getId(): ?int
  52.     {
  53.         return $this->id;
  54.     }
  55.     public function getName(): ?string
  56.     {
  57.         return $this->name;
  58.     }
  59.     public function setName(string $name): self
  60.     {
  61.         $this->name $name;
  62.         return $this;
  63.     }
  64.     public function getDescription(): ?string
  65.     {
  66.         return $this->description;
  67.     }
  68.     public function setDescription(?string $description): self
  69.     {
  70.         $this->description $description;
  71.         return $this;
  72.     }
  73.     /**
  74.      * @return Collection<int, Services>
  75.      */
  76.     public function getServices(): Collection
  77.     {
  78.         return $this->services;
  79.     }
  80.     public function addService(Services $service): self
  81.     {
  82.         if (!$this->services->contains($service)) {
  83.             $this->services->add($service);
  84.             $service->setServiceCategories($this);
  85.         }
  86.         return $this;
  87.     }
  88.     public function removeService(Services $service): self
  89.     {
  90.         if ($this->services->removeElement($service)) {
  91.             // set the owning side to null (unless already changed)
  92.             if ($service->getServiceCategories() === $this) {
  93.                 $service->setServiceCategories(null);
  94.             }
  95.         }
  96.         return $this;
  97.     }
  98.     /**
  99.      * @return Collection<int, General Invoices>
  100.      */
  101.     public function getGeneralInvoiceDetails(): Collection
  102.     {
  103.         return $this->generalInvoiceDetails;
  104.     }
  105.     public function addGeneralInvoiceDetail(GeneralInvoiceDetail $generalInvoiceDetail): self
  106.     {
  107.         if (!$this->generalInvoiceDetails->contains($generalInvoiceDetail)) {
  108.             $this->generalInvoiceDetails->add($generalInvoiceDetail);
  109.             $generalInvoiceDetail->setServiceCategories($this);
  110.         }
  111.         return $this;
  112.     }
  113.     public function removeGeneralInvoiceDetail(GeneralInvoiceDetail $generalInvoiceDetail): self
  114.     {
  115.         if ($this->generalInvoiceDetails->removeElement($generalInvoiceDetail)) {
  116.             // set the owning side to null (unless already changed)
  117.             if ($generalInvoiceDetail->getServiceCategories() === $this) {
  118.                 $generalInvoiceDetail->setServiceCategories(null);
  119.             }
  120.         }
  121.         return $this;
  122.     }
  123.     public function __toString(){
  124.         return $this->name//or anything else
  125.     }
  126. }