src/Entity/Category.php line 13

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CategoryRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Translatable\Translatable;
  8. use Gedmo\Mapping\Annotation as Gedmo;
  9. #[ORM\Entity(repositoryClassCategoryRepository::class)]
  10. class Category implements Translatable
  11. {
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column]
  15.     private ?int $id null;
  16.     #[Gedmo\Translatable]
  17.     #[ORM\Column(length255)]
  18.     private ?string $name null;
  19.     #[Gedmo\Locale]
  20.     private $locale;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $description null;
  23.     #[ORM\ManyToOne(targetEntityself::class, inversedBy'childCategory')]
  24.     private ?self $parentCategory null;
  25.     #[ORM\OneToMany(mappedBy'parentCategory'targetEntityself::class)]
  26.     private Collection $childCategory;
  27.     #[ORM\Column]
  28.     private ?int $level null;
  29.     #[ORM\ManyToMany(targetEntityCategoryMatching::class, mappedBy'categories')]
  30.     private Collection $categoryMatchings;
  31.     #[ORM\ManyToMany(targetEntityProduct::class, mappedBy'categories')]
  32.     private Collection $products;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $image null;
  35.     #[ORM\Column(length255nullabletrue)]
  36.     private ?string $slug null;
  37.     public function __construct()
  38.     {
  39.         $this->childCategory = new ArrayCollection();
  40.         $this->categoryMatchings = new ArrayCollection();
  41.         $this->products = new ArrayCollection();
  42.     }
  43.     public function getId(): ?int
  44.     {
  45.         return $this->id;
  46.     }
  47.     public function getName(): ?string
  48.     {
  49.         return $this->name;
  50.     }
  51.     public function setName(string $name): self
  52.     {
  53.         $this->name $name;
  54.         return $this;
  55.     }
  56.     public function getDescription(): ?string
  57.     {
  58.         return $this->description;
  59.     }
  60.     public function setDescription(?string $description): self
  61.     {
  62.         $this->description $description;
  63.         return $this;
  64.     }
  65.     public function getParentCategory(): ?self
  66.     {
  67.         return $this->parentCategory;
  68.     }
  69.     public function setCategory(?self $parentCategory): static
  70.     {
  71.         $this->parentCategory $parentCategory;
  72.         return $this;
  73.     }
  74.     /**
  75.      * @return Collection<int, self>
  76.      */
  77.     public function getChildCategory(): Collection
  78.     {
  79.         return $this->childCategory;
  80.     }
  81.     public function addChildCategory(self $childCategory): static
  82.     {
  83.         if (!$this->childCategory->contains($childCategory)) {
  84.             $this->childCategory->add($childCategory);
  85.             $childCategory->setCategory($this);
  86.         }
  87.         return $this;
  88.     }
  89.     public function removeChildCategory(self $childCategory): static
  90.     {
  91.         if ($this->childCategory->removeElement($childCategory)) {
  92.             // set the owning side to null (unless already changed)
  93.             if ($childCategory->getCategory() === $this) {
  94.                 $childCategory->setCategory(null);
  95.             }
  96.         }
  97.         return $this;
  98.     }
  99.     public function getLevel(): ?int
  100.     {
  101.         return $this->level;
  102.     }
  103.     public function setLevel(int $level): static
  104.     {
  105.         $this->level $level;
  106.         return $this;
  107.     }
  108.     public function __toString()
  109.      {
  110.         $fullCategory $this->name."<-".$this->parentCategory;
  111.         return $fullCategory;
  112.     }
  113.     /**
  114.      * @return Collection<int, CategoryMatching>
  115.      */
  116.     public function getCategoryMatchings(): Collection
  117.     {
  118.         return $this->categoryMatchings;
  119.     }
  120.     public function addCategoryMatching(CategoryMatching $categoryMatching): static
  121.     {
  122.         if (!$this->categoryMatchings->contains($categoryMatching)) {
  123.             $this->categoryMatchings->add($categoryMatching);
  124.             $categoryMatching->addCategory($this);
  125.         }
  126.         return $this;
  127.     }
  128.     public function removeCategoryMatching(CategoryMatching $categoryMatching): static
  129.     {
  130.         if ($this->categoryMatchings->removeElement($categoryMatching)) {
  131.             $categoryMatching->removeCategory($this);
  132.         }
  133.         return $this;
  134.     }
  135.     /**
  136.      * @return Collection<int, Product>
  137.      */
  138.     public function getProducts(): Collection
  139.     {
  140.         return $this->products;
  141.     }
  142.     public function addProduct(Product $product): static
  143.     {
  144.         if (!$this->products->contains($product)) {
  145.             $this->products->add($product);
  146.             $product->addCategory($this);
  147.         }
  148.         return $this;
  149.     }
  150.     public function removeProduct(Product $product): static
  151.     {
  152.         if ($this->products->removeElement($product)) {
  153.             $product->removeCategory($this);
  154.         }
  155.         return $this;
  156.     }
  157.     public function setParentCategory(?self $parentCategory): static
  158.     {
  159.         $this->parentCategory $parentCategory;
  160.         return $this;
  161.     }
  162.     public function getTotalProducts(): ?int
  163.     {
  164.         return count($this->products);
  165.     }
  166.     public function getImage(): ?string
  167.     {
  168.         return $this->image;
  169.     }
  170.     public function setImage(?string $image): static
  171.     {
  172.         $this->image $image;
  173.         return $this;
  174.     }
  175.     public function setTranslatableLocale($locale)
  176.     {
  177.         $this->locale $locale;
  178.     }
  179.     public function getSlug(): ?string
  180.     {
  181.         return $this->slug;
  182.     }
  183.     public function setSlug(?string $slug): static
  184.     {
  185.         $this->slug $slug;
  186.         return $this;
  187.     }
  188. }