src/Entity/Options.php line 28

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. #[ApiResource(
  15.     cacheHeaders: [
  16.         'max_age' => 60
  17.         'shared_max_age' => 120
  18.         'vary' => ['Authorization''Accept-Language']
  19.     ]
  20. )]
  21. #[ApiFilter(SearchFilter::class, properties: ['option_key' => 'exact'])]
  22. #[ORM\HasLifecycleCallbacks
  23. class Options
  24.     #[ORM\Id]
  25.     #[ORM\GeneratedValue(strategy'IDENTITY')]
  26.     #[ORM\Column]
  27.     private ?int $id null;
  28.     #[ORM\Column(length100)]
  29.     private ?string $option_key null;
  30.     #[ORM\Column(length255)]
  31.     private ?string $value null;
  32.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  33.     private ?\DateTimeInterface $date null;
  34.     #[ORM\Column(length255)]
  35.     private ?string $name null;
  36.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  37.     private ?string $data null;
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getOptionKey(): ?string
  43.     {
  44.         return $this->option_key;
  45.     }
  46.     public function setOptionKey(string $option_key): self
  47.     {
  48.         $this->option_key $option_key;
  49.         return $this;
  50.     }
  51.     public function getValue(): ?string
  52.     {
  53.         return $this->value;
  54.     }
  55.     public function setValue(string $value): self
  56.     {
  57.         $this->value $value;
  58.         return $this;
  59.     }
  60.     public function getDate(): ?\DateTimeInterface
  61.     {
  62.         return $this->date;
  63.     }
  64.     public function setDate(\DateTimeInterface $date): self
  65.     {
  66.         $this->date $date;
  67.         return $this;
  68.     }
  69.     public function getName(): ?string
  70.     {
  71.         return $this->name;
  72.     }
  73.     public function setName(string $name): self
  74.     {
  75.         $this->name $name;
  76.         return $this;
  77.     }
  78.     public function getData(): ?string
  79.     {
  80.         return $this->data;
  81.     }
  82.     public function setData(?string $data): self
  83.     {
  84.         $this->data $data;
  85.         return $this;
  86.     }
  87.     #[ORM\PrePersist]
  88.     public function setCreatedAtValue(): void
  89.     {
  90.         $this->date = new \DateTime();
  91.     }
  92. }