src/Entity/PageContent.php line 25

  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\Post;
  4. use Doctrine\DBAL\Types\Types;
  5. use ApiPlatform\Metadata\Patch;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use ApiPlatform\Metadata\ApiFilter;
  8. use ApiPlatform\Metadata\ApiResource;
  9. use ApiPlatform\Metadata\GetCollection;
  10. use App\Repository\PageContentRepository;
  11. use ApiPlatform\Doctrine\Orm\Filter\SearchFilter;
  12. #[ORM\Entity(repositoryClassPageContentRepository::class)]
  13. #[ApiFilter(SearchFilter::class, properties: [self::URL_PARAM_NAME => 'exact'])]
  14. #[ApiResource(
  15.     operations: [
  16.         new GetCollection(),
  17.         // new Post(),
  18.         // new Patch(),
  19.     ]
  20. )]
  21. class PageContent
  22. {
  23.     public const URL_PARAM_NAME 'url';
  24.     #[ORM\Id]
  25.     #[ORM\GeneratedValue]
  26.     #[ORM\Column]
  27.     private ?int $id null;
  28.     #[ORM\Column(length1024)]
  29.     private ?string $url null;
  30.     #[ORM\Column(length255)]
  31.     private ?string $name null;
  32.     #[ORM\Column(length255)]
  33.     private ?string $title null;
  34.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  35.     private ?string $body null;
  36.     #[ORM\Column(length1024nullabletrue)]
  37.     private ?string $summary null;
  38.     #[ORM\Column(length255nullabletrue)]
  39.     private ?string $miniSummary null;
  40.     #[ORM\Column(length1024)]
  41.     private ?string $alias null;
  42.     #[ORM\Column]
  43.     private array $fields = [];
  44.     #[ORM\Column(length255nullabletrue)]
  45.     private ?string $type null;
  46.     public function getId(): ?int
  47.     {
  48.         return $this->id;
  49.     }
  50.     public function getUrl(): ?string
  51.     {
  52.         return $this->url;
  53.     }
  54.     public function setUrl(string $url): self
  55.     {
  56.         $this->url $url;
  57.         return $this;
  58.     }
  59.     public function getName(): ?string
  60.     {
  61.         return $this->name;
  62.     }
  63.     public function setName(string $name): self
  64.     {
  65.         $this->name $name;
  66.         return $this;
  67.     }
  68.     public function getTitle(): ?string
  69.     {
  70.         return $this->title;
  71.     }
  72.     public function setTitle(string $title): self
  73.     {
  74.         $this->title $title;
  75.         return $this;
  76.     }
  77.     public function getBody(): ?string
  78.     {
  79.         return $this->body;
  80.     }
  81.     public function setBody(?string $body): self
  82.     {
  83.         $this->body $body;
  84.         return $this;
  85.     }
  86.     public function getSummary(): ?string
  87.     {
  88.         return $this->summary;
  89.     }
  90.     public function setSummary(?string $summary): self
  91.     {
  92.         $this->summary $summary;
  93.         return $this;
  94.     }
  95.     public function getMiniSummary(): ?string
  96.     {
  97.         return $this->miniSummary;
  98.     }
  99.     public function setMiniSummary(?string $miniSummary): self
  100.     {
  101.         $this->miniSummary $miniSummary;
  102.         return $this;
  103.     }
  104.     public function getAlias(): ?string
  105.     {
  106.         return $this->alias;
  107.     }
  108.     public function setAlias(string $alias): self
  109.     {
  110.         $this->alias $alias;
  111.         return $this;
  112.     }
  113.     public function getFields(): array
  114.     {
  115.         return $this->fields;
  116.     }
  117.     public function setFields(array $fields): self
  118.     {
  119.         $this->fields $fields;
  120.         return $this;
  121.     }
  122.     public function getType(): ?string
  123.     {
  124.         return $this->type;
  125.     }
  126.     public function setType(?string $type): self
  127.     {
  128.         $this->type $type;
  129.         return $this;
  130.     }
  131. }