src/Entity/ResourcesCategories.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ResourcesCategoriesRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=ResourcesCategoriesRepository::class)
  9.  */
  10. class ResourcesCategories
  11. {
  12.     /**
  13.      * @ORM\Id()
  14.      * @ORM\GeneratedValue()
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255)
  20.      */
  21.     private $label;
  22.     /**
  23.      * @ORM\Column(type="text", nullable=true)
  24.      */
  25.     private $description;
  26.     /**
  27.      * @ORM\OneToMany(targetEntity=Resources::class, mappedBy="category", orphanRemoval=true)
  28.      */
  29.     private $resources;
  30.     /**
  31.      * @ORM\Column(type="string", length=255, nullable=true)
  32.      */
  33.     private $slug;
  34.     public function __construct()
  35.     {
  36.         $this->faqs = new ArrayCollection();
  37.     }
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getLabel(): ?string
  43.     {
  44.         return $this->label;
  45.     }
  46.     public function setLabel(string $label): self
  47.     {
  48.         $this->label $label;
  49.         return $this;
  50.     }
  51.     public function getDescription(): ?string
  52.     {
  53.         return $this->description;
  54.     }
  55.     public function setDescription(?string $description): self
  56.     {
  57.         $this->description $description;
  58.         return $this;
  59.     }
  60.     public function getResources(): Collection
  61.     {
  62.         return $this->resources;
  63.     }
  64.     public function addResource(Resources $resource): self
  65.     {
  66.         if (!$this->resources->contains($resource)) {
  67.             $this->resources[] = $resource;
  68.             $resource->setCategory($this);
  69.         }
  70.         return $this;
  71.     }
  72.     public function removeResource(Resources $resource): self
  73.     {
  74.         if ($this->resources->contains($resource)) {
  75.             $this->resources->removeElement($resource);
  76.             // set the owning side to null (unless already changed)
  77.             if ($resource->getCategory() === $this) {
  78.                 $resource->setCategory(null);
  79.             }
  80.         }
  81.         return $this;
  82.     }
  83.     public function __toString()
  84.     {
  85.         return $this->label;
  86.     }
  87.     public function getSlug(): ?string
  88.     {
  89.         return $this->slug;
  90.     }
  91.     public function setSlug(?string $slug): self
  92.     {
  93.         $this->slug $slug;
  94.         return $this;
  95.     }
  96. }