src/Entity/ProductCollection.php line 18
<?php
namespace App\Entity;
use App\Repository\ProductCollectionRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Symfony\Component\Validator\Constraints as Assert;
use Gedmo\Translatable\Translatable;
use Gedmo\Mapping\Annotation as Gedmo;
#[ORM\Entity(repositoryClass: ProductCollectionRepository::class)]
#[UniqueEntity('name')]
class ProductCollection 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\Column(length: 255, nullable: true)]
private ?string $image = null;
#[ORM\Column(nullable: true)]
private ?int $gender = null;
#[ORM\ManyToMany(targetEntity: Product::class, mappedBy: 'collections')]
private Collection $products;
#[ORM\Column]
private ?bool $featured = null;
public function __construct()
{
$this->products = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): static
{
$this->name = $name;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): static
{
$this->description = $description;
return $this;
}
public function __toString()
{
$gender = $this->gender == 1 ? "Mens" : "Women";
return $this->name." [".$gender."]";
}
public function getGenderName()
{
$gender = $this->gender == 1 ? "Mens" : "Women";
return $gender;
}
public function getImage(): ?string
{
return $this->image;
}
public function setImage(?string $image): static
{
$this->image = $image;
return $this;
}
public function getGender(): ?int
{
return $this->gender;
}
public function setGender(?int $gender): static
{
$this->gender = $gender;
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->addCollection($this);
}
return $this;
}
public function removeProduct(Product $product): static
{
if ($this->products->removeElement($product)) {
$product->removeCollection($this);
}
return $this;
}
public function isFeatured(): ?bool
{
return $this->featured;
}
public function setTranslatableLocale($locale)
{
$this->locale = $locale;
}
public function setFeatured(bool $featured): static
{
$this->featured = $featured;
return $this;
}
}