src/Entity/ProductCollection.php line 18

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductCollectionRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  8. use Symfony\Component\Validator\Constraints as Assert;
  9. use Gedmo\Translatable\Translatable;
  10. use Gedmo\Mapping\Annotation as Gedmo;
  11. #[ORM\Entity(repositoryClassProductCollectionRepository::class)]
  12. #[UniqueEntity('name')]
  13. class ProductCollection implements Translatable
  14. {
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[Gedmo\Translatable]
  20.     #[ORM\Column(length255)]
  21.     private ?string $name null;
  22.     #[Gedmo\Locale]
  23.     private $locale;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $description null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $image null;
  28.     #[ORM\Column(nullabletrue)]
  29.     private ?int $gender null;
  30.     #[ORM\ManyToMany(targetEntityProduct::class, mappedBy'collections')]
  31.     private Collection $products;
  32.     #[ORM\Column]
  33.     private ?bool $featured null;
  34.     public function __construct()
  35.     {
  36.         $this->products = new ArrayCollection();
  37.     }
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getName(): ?string
  43.     {
  44.         return $this->name;
  45.     }
  46.     public function setName(string $name): static
  47.     {
  48.         $this->name $name;
  49.         return $this;
  50.     }
  51.     public function getDescription(): ?string
  52.     {
  53.         return $this->description;
  54.     }
  55.     public function setDescription(?string $description): static
  56.     {
  57.         $this->description $description;
  58.         return $this;
  59.     }
  60.     public function __toString()
  61.     {   
  62.         $gender $this->gender == "Mens" "Women";
  63.         return $this->name." [".$gender."]";
  64.     }
  65.     public function getGenderName()
  66.     {
  67.         $gender $this->gender == "Mens" "Women";
  68.         return $gender;
  69.     }
  70.     public function getImage(): ?string
  71.     {
  72.         return $this->image;
  73.     }
  74.     public function setImage(?string $image): static
  75.     {
  76.         $this->image $image;
  77.         return $this;
  78.     }
  79.     public function getGender(): ?int
  80.     {
  81.         return $this->gender;
  82.     }
  83.     public function setGender(?int $gender): static
  84.     {
  85.         $this->gender $gender;
  86.         return $this;
  87.     }
  88.     /**
  89.      * @return Collection<int, Product>
  90.      */
  91.     public function getProducts(): Collection
  92.     {
  93.         return $this->products;
  94.     }
  95.     public function addProduct(Product $product): static
  96.     {
  97.         if (!$this->products->contains($product)) {
  98.             $this->products->add($product);
  99.             $product->addCollection($this);
  100.         }
  101.         return $this;
  102.     }
  103.     public function removeProduct(Product $product): static
  104.     {
  105.         if ($this->products->removeElement($product)) {
  106.             $product->removeCollection($this);
  107.         }
  108.         return $this;
  109.     }
  110.     public function isFeatured(): ?bool
  111.     {
  112.         return $this->featured;
  113.     }
  114.     public function setTranslatableLocale($locale)
  115.     {
  116.         $this->locale $locale;
  117.     }
  118.     
  119.     public function setFeatured(bool $featured): static
  120.     {
  121.         $this->featured $featured;
  122.         return $this;
  123.     }
  124. }