src/Entity/Options.php line 26

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\OptionsRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use ApiPlatform\Metadata\Get;
  8. use ApiPlatform\Metadata\Post;
  9. use ApiPlatform\Metadata\Put;
  10. use ApiPlatform\Metadata\Delete;
  11. use ApiPlatform\Metadata\ApiFilter;
  12. use ApiPlatform\Doctrine\Orm\Filter\SearchFilter;
  13. #[ORM\Entity(repositoryClassOptionsRepository::class)]
  14. #[Get]
  15. #[Put(security"is_granted('ROLE_ADMIN')")]
  16. #[Post(security"is_granted('ROLE_ADMIN')")]
  17. #[Delete(security"is_granted('ROLE_ADMIN')")]
  18. #[ApiResource]
  19. #[ApiFilter(SearchFilter::class, properties: ['option_key' => 'exact'])]
  20. #[ORM\HasLifecycleCallbacks
  21. class Options
  22.     #[ORM\Id]
  23.     #[ORM\GeneratedValue]
  24.     #[ORM\Column]
  25.     private ?int $id null;
  26.     #[ORM\Column(length100)]
  27.     private ?string $option_key null;
  28.     #[ORM\Column(length255)]
  29.     private ?string $value null;
  30.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  31.     private ?\DateTimeInterface $date null;
  32.     #[ORM\Column(length255)]
  33.     private ?string $name null;
  34.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  35.     private ?string $data null;
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getOptionKey(): ?string
  41.     {
  42.         return $this->option_key;
  43.     }
  44.     public function setOptionKey(string $option_key): self
  45.     {
  46.         $this->option_key $option_key;
  47.         return $this;
  48.     }
  49.     public function getValue(): ?string
  50.     {
  51.         return $this->value;
  52.     }
  53.     public function setValue(string $value): self
  54.     {
  55.         $this->value $value;
  56.         return $this;
  57.     }
  58.     public function getDate(): ?\DateTimeInterface
  59.     {
  60.         return $this->date;
  61.     }
  62.     public function setDate(\DateTimeInterface $date): self
  63.     {
  64.         $this->date $date;
  65.         return $this;
  66.     }
  67.     public function getName(): ?string
  68.     {
  69.         return $this->name;
  70.     }
  71.     public function setName(string $name): self
  72.     {
  73.         $this->name $name;
  74.         return $this;
  75.     }
  76.     public function getData(): ?string
  77.     {
  78.         return $this->data;
  79.     }
  80.     public function setData(?string $data): self
  81.     {
  82.         $this->data $data;
  83.         return $this;
  84.     }
  85.     #[ORM\PrePersist]
  86.     public function setCreatedAtValue(): void
  87.     {
  88.         $this->date = new \DateTime();
  89.     }
  90. }