src/Flexy/ShopBundle/Entity/Product/Attribut.php line 14
<?php
namespace App\Flexy\ShopBundle\Entity\Product;
use ApiPlatform\Core\Annotation\ApiResource;
use App\Flexy\ShopBundle\Repository\Product\AttributRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
#[ApiResource]
#[ORM\Entity(repositoryClass: AttributRepository::class)]
#[ORM\Cache(usage:"NONSTRICT_READ_WRITE",region:"append_depend")]
class Attribut implements \Stringable
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $description = null;
#[ORM\Column(type: 'datetime_immutable', nullable: true)]
private ?\DateTimeImmutable $createdAt = null;
#[ORM\Column(type: 'string', length: 255)]
private ?string $name = null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $type = "text";
#[ORM\OneToMany(targetEntity: AttributValue::class, mappedBy: 'attribut',cascade:["remove","persist"])]
private \Doctrine\Common\Collections\Collection|array $attributValues;
#[ORM\ManyToMany(targetEntity: CategoryProduct::class, mappedBy: 'attributes')]
private \Doctrine\Common\Collections\Collection|array $categoriesProduct;
public function __construct()
{
$this->attributValues = new ArrayCollection();
$this->categoriesProduct = new ArrayCollection();
}
public function __toString(): string
{
return (string) $this->name;
}
public function getId(): ?int
{
return $this->id;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): self
{
$this->description = $description;
return $this;
}
public function getCreatedAt(): ?\DateTimeImmutable
{
return $this->createdAt;
}
public function setCreatedAt(?\DateTimeImmutable $createdAt): self
{
$this->createdAt = $createdAt;
return $this;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getType(): ?string
{
return $this->type;
}
public function setType(?string $type): self
{
$this->type = $type;
return $this;
}
/**
* @return Collection|AttributValue[]
*/
public function getAttributValues(): Collection
{
return $this->attributValues;
}
public function addAttributValue(AttributValue $attributValue): self
{
if (!$this->attributValues->contains($attributValue)) {
$this->attributValues[] = $attributValue;
$attributValue->setAttribut($this);
}
return $this;
}
public function removeAttributValue(AttributValue $attributValue): self
{
if ($this->attributValues->removeElement($attributValue)) {
// set the owning side to null (unless already changed)
if ($attributValue->getAttribut() === $this) {
$attributValue->setAttribut(null);
}
}
return $this;
}
/**
* @return Collection|CategoryProduct[]
*/
public function getCategoriesProduct(): Collection
{
return $this->categoriesProduct;
}
public function addCategoriesProduct(CategoryProduct $categoriesProduct): self
{
if (!$this->categoriesProduct->contains($categoriesProduct)) {
$this->categoriesProduct[] = $categoriesProduct;
$categoriesProduct->addAttribute($this);
}
return $this;
}
public function removeCategoriesProduct(CategoryProduct $categoriesProduct): self
{
if ($this->categoriesProduct->removeElement($categoriesProduct)) {
$categoriesProduct->removeAttribute($this);
}
return $this;
}
}