src/Entity/Brand.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BrandRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Blameable\Traits\BlameableEntity;
  8. use Gedmo\Timestampable\Traits\TimestampableEntity;
  9. use Knp\DoctrineBehaviors\Contract\Entity\TranslatableInterface;
  10. use Knp\DoctrineBehaviors\Model\Translatable\TranslatableTrait;
  11. use Symfony\Component\Serializer\Annotation\Groups;
  12. use Symfony\Component\Validator\Constraints as Assert;
  13. use Symfony\Component\PropertyAccess\PropertyAccess;
  14. #[ORM\Entity(repositoryClassBrandRepository::class)]
  15. class Brand implements TranslatableInterface
  16. {
  17.     use BlameableEntity//Hook blameable behaviour. Updates createdBy, updatedBy fields
  18.     use TimestampableEntity//Hook timestampable behaviour. Updates createdAt, updatedAt fields 
  19.     use TranslatableTrait;
  20.     #[Assert\Valid]
  21.     protected $translations;
  22.     #[ORM\Id]
  23.     #[ORM\GeneratedValue(strategy"IDENTITY")]
  24.     #[ORM\Column]
  25.     #[Groups("serial")]
  26.     private ?int $id null;
  27.     #[ORM\Column(length255)]
  28.     #[Assert\NotNull()]
  29.     #[Assert\Length(max255)]
  30.     #[Groups("serial")]
  31.     private ?string $name null;
  32.     #[ORM\Column(nullabletrueoptions: ['default' => false])]
  33.     private ?bool $hidden_on_cover false;
  34.     #[ORM\OneToMany(mappedBy'brand'targetEntityMedia::class, cascade: ["persist""remove"])]
  35.     #[ORM\OrderBy(["position" => "ASC"])]
  36.     private Collection $media;
  37.     #[ORM\OneToMany(mappedBy'brand'targetEntityProduct::class)]
  38.     private Collection $products;
  39.     #[ORM\OneToMany(mappedBy'brand'targetEntityProductUnique::class)]
  40.     private Collection $productUniques;
  41.     #[ORM\OneToOne(cascade: ['persist''remove'])]
  42.     #[Assert\NotNull()]
  43.     private ?Media $logo null;
  44.     public function __call($method$arguments)
  45.     {
  46.         return PropertyAccess::createPropertyAccessor()->getValue($this->translate(), $method);
  47.     }
  48.     public function __construct()
  49.     {
  50.         $this->products = new ArrayCollection();
  51.         $this->media = new ArrayCollection();
  52.         $this->productUniques = new ArrayCollection();
  53.     }
  54.     public function __toString()
  55.     {
  56.         return $this->name;
  57.     }
  58.     public function getId(): ?int
  59.     {
  60.         return $this->id;
  61.     }
  62.     public function getName(): ?string
  63.     {
  64.         return $this->name;
  65.     }
  66.     public function setName(string $name): self
  67.     {
  68.         $this->name $name;
  69.         return $this;
  70.     }
  71.     public function getHiddenOnCover(): ?bool
  72.     {
  73.         return $this->hidden_on_cover;
  74.     }
  75.     public function setHiddenOnCover(bool $hidden_on_cover): self
  76.     {
  77.         $this->hidden_on_cover $hidden_on_cover;
  78.         return $this;
  79.     }
  80.     /**
  81.      * @return Collection<int, Product>
  82.      */
  83.     public function getProducts(): Collection
  84.     {
  85.         return $this->products;
  86.     }
  87.     public function addProduct(Product $product): self
  88.     {
  89.         if (!$this->products->contains($product)) {
  90.             $this->products->add($product);
  91.             $product->setBrand($this);
  92.         }
  93.         return $this;
  94.     }
  95.     public function removeProduct(Product $product): self
  96.     {
  97.         if ($this->products->removeElement($product)) {
  98.             // set the owning side to null (unless already changed)
  99.             if ($product->getBrand() === $this) {
  100.                 $product->setBrand(null);
  101.             }
  102.         }
  103.         return $this;
  104.     }
  105.     /**
  106.      * @return Collection<int, ProductUnique>
  107.      */
  108.     public function getProductUniques(): Collection
  109.     {
  110.         return $this->productUniques;
  111.     }
  112.     public function addProductUnique(ProductUnique $productUnique): self
  113.     {
  114.         if (!$this->productUniques->contains($productUnique)) {
  115.             $this->productUniques->add($productUnique);
  116.             $productUnique->setBrand($this);
  117.         }
  118.         return $this;
  119.     }
  120.     public function removeProductUnique(ProductUnique $productUnique): self
  121.     {
  122.         if ($this->productUniques->removeElement($productUnique)) {
  123.             // set the owning side to null (unless already changed)
  124.             if ($productUnique->getBrand() === $this) {
  125.                 $productUnique->setBrand(null);
  126.             }
  127.         }
  128.         return $this;
  129.     }
  130.     public function getLogo(): ?Media
  131.     {
  132.         return $this->logo;
  133.     }
  134.     public function setLogo(Media $logo): self
  135.     {
  136.         $logo->setDirectory('brand');
  137.         $this->logo $logo;
  138.         return $this;
  139.     }
  140.     /**
  141.      * Main image is the one that have position 0
  142.      * @return Media|null
  143.      */
  144.     public function getMainBrandImage(): ?Media
  145.     {
  146.         if ($this->media) {
  147.             $filteredBrandImages $this->media->filter(function (Media $brandImage) {
  148.                 return $brandImage->getPosition() == 0;
  149.             });
  150.             return (count($filteredBrandImages) > 0) ? $filteredBrandImages->first() : null;
  151.         } else {
  152.             return null;
  153.         }
  154.     }
  155.     /**
  156.      * @return Collection<int, Media>
  157.      */
  158.     public function getMedia(): Collection
  159.     {
  160.         return $this->media;
  161.     }
  162.     public function addMedium(Media $medium): self
  163.     {
  164.         if (!$this->media->contains($medium)) {
  165.             $medium->setDirectory('brand');
  166.             $this->media->add($medium);
  167.             $medium->setBrand($this);
  168.         }
  169.         return $this;
  170.     }
  171.     public function removeMedium(Media $medium): self
  172.     {
  173.         if ($this->media->removeElement($medium)) {
  174.             // set the owning side to null (unless already changed)
  175.             if ($medium->getBrand() === $this) {
  176.                 $medium->setBrand(null);
  177.             }
  178.         }
  179.         return $this;
  180.     }
  181. }