src/Entity/Category.php line 13
<?php
namespace App\Entity;
use App\Repository\CategoryRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Translatable\Translatable;
use Gedmo\Mapping\Annotation as Gedmo;
#[ORM\Entity(repositoryClass: CategoryRepository::class)]
class Category implements Translatable
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[Gedmo\Translatable]
#[ORM\Column(length: 255)]
private ?string $name = null;
#[Gedmo\Locale]
private $locale;
#[ORM\Column(length: 255, nullable: true)]
private ?string $description = null;
#[ORM\ManyToOne(targetEntity: self::class, inversedBy: 'childCategory')]
private ?self $parentCategory = null;
#[ORM\OneToMany(mappedBy: 'parentCategory', targetEntity: self::class)]
private Collection $childCategory;
#[ORM\Column]
private ?int $level = null;
#[ORM\ManyToMany(targetEntity: CategoryMatching::class, mappedBy: 'categories')]
private Collection $categoryMatchings;
#[ORM\ManyToMany(targetEntity: Product::class, mappedBy: 'categories')]
private Collection $products;
#[ORM\Column(length: 255, nullable: true)]
private ?string $image = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $slug = null;
public function __construct()
{
$this->childCategory = new ArrayCollection();
$this->categoryMatchings = new ArrayCollection();
$this->products = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): self
{
$this->description = $description;
return $this;
}
public function getParentCategory(): ?self
{
return $this->parentCategory;
}
public function setCategory(?self $parentCategory): static
{
$this->parentCategory = $parentCategory;
return $this;
}
/**
* @return Collection<int, self>
*/
public function getChildCategory(): Collection
{
return $this->childCategory;
}
public function addChildCategory(self $childCategory): static
{
if (!$this->childCategory->contains($childCategory)) {
$this->childCategory->add($childCategory);
$childCategory->setCategory($this);
}
return $this;
}
public function removeChildCategory(self $childCategory): static
{
if ($this->childCategory->removeElement($childCategory)) {
// set the owning side to null (unless already changed)
if ($childCategory->getCategory() === $this) {
$childCategory->setCategory(null);
}
}
return $this;
}
public function getLevel(): ?int
{
return $this->level;
}
public function setLevel(int $level): static
{
$this->level = $level;
return $this;
}
public function __toString()
{
$fullCategory = $this->name."<-".$this->parentCategory;
return $fullCategory;
}
/**
* @return Collection<int, CategoryMatching>
*/
public function getCategoryMatchings(): Collection
{
return $this->categoryMatchings;
}
public function addCategoryMatching(CategoryMatching $categoryMatching): static
{
if (!$this->categoryMatchings->contains($categoryMatching)) {
$this->categoryMatchings->add($categoryMatching);
$categoryMatching->addCategory($this);
}
return $this;
}
public function removeCategoryMatching(CategoryMatching $categoryMatching): static
{
if ($this->categoryMatchings->removeElement($categoryMatching)) {
$categoryMatching->removeCategory($this);
}
return $this;
}
/**
* @return Collection<int, Product>
*/
public function getProducts(): Collection
{
return $this->products;
}
public function addProduct(Product $product): static
{
if (!$this->products->contains($product)) {
$this->products->add($product);
$product->addCategory($this);
}
return $this;
}
public function removeProduct(Product $product): static
{
if ($this->products->removeElement($product)) {
$product->removeCategory($this);
}
return $this;
}
public function setParentCategory(?self $parentCategory): static
{
$this->parentCategory = $parentCategory;
return $this;
}
public function getTotalProducts(): ?int
{
return count($this->products);
}
public function getImage(): ?string
{
return $this->image;
}
public function setImage(?string $image): static
{
$this->image = $image;
return $this;
}
public function setTranslatableLocale($locale)
{
$this->locale = $locale;
}
public function getSlug(): ?string
{
return $this->slug;
}
public function setSlug(?string $slug): static
{
$this->slug = $slug;
return $this;
}
}