src/Entity/FormEntry.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FormEntryRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassFormEntryRepository::class)]
  7. class FormEntry
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $form_type null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $full_name null;
  17.     #[ORM\Column(length255)]
  18.     private ?string $email null;
  19.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  20.     private ?string $message null;
  21.     #[ORM\Column]
  22.     private ?bool $terms null;
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?bool $own_content null;
  25.     #[ORM\Column(nullabletrue)]
  26.     private ?bool $tip_name null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $link_to_url null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $category null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $institution null;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $location null;
  35.     #[ORM\Column(length255nullabletrue)]
  36.     private ?string $kind null;
  37.     #[ORM\Column(length255nullabletrue)]
  38.     private ?string $study_level null;
  39.     public function getId(): ?int
  40.     {
  41.         return $this->id;
  42.     }
  43.     public function getFormType(): ?string
  44.     {
  45.         return $this->form_type;
  46.     }
  47.     public function setFormType(string $form_type): self
  48.     {
  49.         $this->form_type $form_type;
  50.         return $this;
  51.     }
  52.     public function getFullName(): ?string
  53.     {
  54.         return $this->full_name;
  55.     }
  56.     public function setFullName(?string $full_name): self
  57.     {
  58.         $this->full_name $full_name;
  59.         return $this;
  60.     }
  61.     public function getEmail(): ?string
  62.     {
  63.         return $this->email;
  64.     }
  65.     public function setEmail(string $email): self
  66.     {
  67.         $this->email $email;
  68.         return $this;
  69.     }
  70.     public function getMessage(): ?string
  71.     {
  72.         return $this->message;
  73.     }
  74.     public function setMessage(?string $message): self
  75.     {
  76.         $this->message $message;
  77.         return $this;
  78.     }
  79.     public function isTerms(): ?bool
  80.     {
  81.         return $this->terms;
  82.     }
  83.     public function setTerms(bool $terms): self
  84.     {
  85.         $this->terms $terms;
  86.         return $this;
  87.     }
  88.     public function isOwnContent(): ?bool
  89.     {
  90.         return $this->own_content;
  91.     }
  92.     public function setOwnContent(bool $ownContent): self
  93.     {
  94.         $this->own_content $ownContent;
  95.         return $this;
  96.     }
  97.     public function isTipName(): ?bool
  98.     {
  99.         return $this->tip_name;
  100.     }
  101.     public function setTipName(bool $tipName): self
  102.     {
  103.         $this->tip_name $tipName;
  104.         return $this;
  105.     }
  106.     public function getLinkToUrl(): ?string
  107.     {
  108.         return $this->link_to_url;
  109.     }
  110.     public function setLinkToUrl(?string $link_to_url): self
  111.     {
  112.         $this->link_to_url $link_to_url;
  113.         return $this;
  114.     }
  115.     public function getCategory(): ?string
  116.     {
  117.         return $this->category;
  118.     }
  119.     public function setCategory(?string $category): self
  120.     {
  121.         $this->category $category;
  122.         return $this;
  123.     }
  124.     public function getInstitution(): ?string
  125.     {
  126.         return $this->institution;
  127.     }
  128.     public function setInstitution(?string $institution): self
  129.     {
  130.         $this->institution $institution;
  131.         return $this;
  132.     }
  133.     public function getLocation(): ?string
  134.     {
  135.         return $this->location;
  136.     }
  137.     public function setLocation(?string $location): self
  138.     {
  139.         $this->location $location;
  140.         return $this;
  141.     }
  142.     public function getKind(): ?string
  143.     {
  144.         return $this->kind;
  145.     }
  146.     public function setKind(?string $kind): self
  147.     {
  148.         $this->kind $kind;
  149.         return $this;
  150.     }
  151.     public function getStudyLevel(): ?string
  152.     {
  153.         return $this->study_level;
  154.     }
  155.     public function setStudyLevel(?string $study_level): self
  156.     {
  157.         $this->study_level $study_level;
  158.         return $this;
  159.     }
  160. }