src/Entity/Cvs/BigCategories.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Cvs;
  3. use App\Entity\Core\Users;
  4. use App\Entity\Core\Agencies;
  5. use Doctrine\DBAL\Types\Types;
  6. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  7. use Symfony\Component\Validator\Constraints as Assert;
  8. use Doctrine\ORM\Mapping as ORM;
  9. /**
  10.  * Categories
  11.  *
  12.  * @ORM\Table("cvs_big_categories")
  13.  * @ORM\Entity()
  14.  * @ORM\HasLifecycleCallbacks()
  15.  */
  16. class BigCategories
  17. {
  18.     /**
  19.      * @var integer
  20.      *
  21.      * @ORM\Column(name="id", type="integer")
  22.      * @ORM\Id
  23.      * @ORM\GeneratedValue(strategy="AUTO")
  24.      */
  25.     protected $id;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="created_at", type="datetime", nullable=true, options={"comment":"Date de création"})
  30.      */
  31.     private $createdAt;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="updated_at", type="datetime", nullable=true, options={"comment":"Date de mise à jour"})
  36.      */
  37.     private $updatedAt;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="title", type="string", length=255, nullable=true)
  42.      */
  43.     private $title;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="slug", type="string", length=255, nullable=true)
  48.      */
  49.     private $slug;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="description", type="text", nullable=true)
  54.      */
  55.     private $description;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="short_title", type="string", length=255, nullable=true)
  60.      */
  61.     private $shortTitle;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="short_description", type="text", nullable=true)
  66.      */
  67.     private $shortDescription;
  68.     /**
  69.      * @var string
  70.      *
  71.      * @ORM\Column(name="project", type="boolean", length=255, nullable=true)
  72.      */
  73.     private $project;
  74.     /**
  75.      * @ORM\PrePersist
  76.      */
  77.     public function setCreatedAtValue(): void
  78.     {
  79.         $this->setCreatedAt(new \DateTime("now"));
  80.         $this->setUpdatedAt(new \DateTime("now"));
  81.     }
  82.     /**
  83.      * @ORM\PreUpdate
  84.      */
  85.     public function setUpdatedAtValue(): void
  86.     {
  87.         $this->setUpdatedAt(new \DateTime("now"));
  88.     }
  89.     public function getId(): ?int
  90.     {
  91.         return $this->id;
  92.     }
  93.     public function getCreatedAt(): ?\DateTimeInterface
  94.     {
  95.         return $this->createdAt;
  96.     }
  97.     public function setCreatedAt(?\DateTimeInterface $createdAt): static
  98.     {
  99.         $this->createdAt $createdAt;
  100.         return $this;
  101.     }
  102.     public function getUpdatedAt(): ?\DateTimeInterface
  103.     {
  104.         return $this->updatedAt;
  105.     }
  106.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): static
  107.     {
  108.         $this->updatedAt $updatedAt;
  109.         return $this;
  110.     }
  111.     public function getTitle(): ?string
  112.     {
  113.         return $this->title;
  114.     }
  115.     public function setTitle(?string $title): static
  116.     {
  117.         $this->title $title;
  118.         return $this;
  119.     }
  120.     public function getSlug(): ?string
  121.     {
  122.         return $this->slug;
  123.     }
  124.     public function setSlug(?string $slug): static
  125.     {
  126.         $this->slug $slug;
  127.         return $this;
  128.     }
  129.     public function getDescription(): ?string
  130.     {
  131.         return $this->description;
  132.     }
  133.     public function setDescription(?string $description): static
  134.     {
  135.         $this->description $description;
  136.         return $this;
  137.     }
  138.     public function getShortTitle(): ?string
  139.     {
  140.         return $this->shortTitle;
  141.     }
  142.     public function setShortTitle(?string $shortTitle): static
  143.     {
  144.         $this->shortTitle $shortTitle;
  145.         return $this;
  146.     }
  147.     public function getShortDescription(): ?string
  148.     {
  149.         return $this->shortDescription;
  150.     }
  151.     public function setShortDescription(?string $shortDescription): static
  152.     {
  153.         $this->shortDescription $shortDescription;
  154.         return $this;
  155.     }
  156.     public function isProject(): ?bool
  157.     {
  158.         return $this->project;
  159.     }
  160.     public function setProject(?bool $project): static
  161.     {
  162.         $this->project $project;
  163.         return $this;
  164.     }
  165. }