src/Entity/Pages/SaveTemplates.php line 17

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Pages;
  3. use Doctrine\DBAL\Types\Types;
  4. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * Save Templates
  9.  *
  10.  * @ORM\Table("pages_save_templates")
  11.  * @ORM\Entity(repositoryClass="App\Repository\Pages\SaveTemplatesRepository")
  12.  * @ORM\HasLifecycleCallbacks()
  13.  */
  14. class SaveTemplates
  15. {
  16.     /**
  17.      * @var integer
  18.      *
  19.      * @ORM\Column(name="id", type="integer")
  20.      * @ORM\Id
  21.      * @ORM\GeneratedValue(strategy="AUTO")
  22.      */
  23.     protected $id;
  24.     /**
  25.      * @var string
  26.      *
  27.      * @ORM\Column(name="created_at", type="datetime", nullable=true, options={"comment":"Date de création"})
  28.      */
  29.     private $createdAt;
  30.     /**
  31.      * @var string
  32.      *
  33.      * @ORM\Column(name="updated_at", type="datetime", nullable=true, options={"comment":"Date de mise à jour"})
  34.      */
  35.     private $updatedAt;
  36.     /**
  37.      * @var string
  38.      *
  39.      * @ORM\Column(name="name", type="string", length=255, nullable=true)
  40.      */
  41.     private $name;
  42.     /**
  43.      * @var string
  44.      *
  45.      * @ORM\Column(name="description", type="text", nullable=true)
  46.      */
  47.     private $description;
  48.     /**
  49.      * @var string
  50.      *
  51.      * @ORM\Column(name="generation_html", type="text", nullable=true)
  52.      */
  53.     private $generationHTML;
  54.     /**
  55.      * @var string
  56.      *
  57.      * @ORM\Column(name="last_id_page", type="text", nullable=true)
  58.      */
  59.     private $last;
  60.     
  61.     /**
  62.      * @ORM\PrePersist
  63.      */
  64.     public function setCreatedAtValue(): void
  65.     {
  66.         $this->setCreatedAt(new \DateTime("now"));
  67.         $this->setUpdatedAt(new \DateTime("now"));
  68.     }
  69.     /**
  70.      * @ORM\PreUpdate
  71.      */
  72.     public function setUpdatedAtValue(): void
  73.     {
  74.         $this->setUpdatedAt(new \DateTime("now"));
  75.     }
  76.     public function __toString()
  77.     {
  78.         return $this->name;
  79.     }
  80.     public function getId(): ?int
  81.     {
  82.         return $this->id;
  83.     }
  84.     public function getCreatedAt(): ?\DateTimeInterface
  85.     {
  86.         return $this->createdAt;
  87.     }
  88.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  89.     {
  90.         $this->createdAt $createdAt;
  91.         return $this;
  92.     }
  93.     public function getUpdatedAt(): ?\DateTimeInterface
  94.     {
  95.         return $this->updatedAt;
  96.     }
  97.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  98.     {
  99.         $this->updatedAt $updatedAt;
  100.         return $this;
  101.     }
  102.     public function getName(): ?string
  103.     {
  104.         return $this->name;
  105.     }
  106.     public function setName(?string $name): self
  107.     {
  108.         $this->name $name;
  109.         return $this;
  110.     }
  111.     public function getDescription(): ?string
  112.     {
  113.         return $this->description;
  114.     }
  115.     public function setDescription(?string $description): self
  116.     {
  117.         $this->description $description;
  118.         return $this;
  119.     }
  120.     public function getGenerationHTML(): ?string
  121.     {
  122.         return $this->generationHTML;
  123.     }
  124.     public function setGenerationHTML(?string $generationHTML): self
  125.     {
  126.         $this->generationHTML $generationHTML;
  127.         return $this;
  128.     }
  129.     public function getLast(): ?string
  130.     {
  131.         return $this->last;
  132.     }
  133.     public function setLast(?string $last): self
  134.     {
  135.         $this->last $last;
  136.         return $this;
  137.     }
  138. }