src/Entity/Cvs/Categories.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_categories")
  13.  * @ORM\Entity()
  14.  * @ORM\HasLifecycleCallbacks()
  15.  */
  16. class Categories
  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="icon", type="text", nullable=true)
  60.      */
  61.     private $icon;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="short_title", type="string", length=255, nullable=true)
  66.      */
  67.     private $shortTitle;
  68.     /**
  69.      * @var string
  70.      *
  71.      * @ORM\Column(name="short_description", type="text", nullable=true)
  72.      */
  73.     private $shortDescription;
  74.     /**
  75.      * @var \BigCategories
  76.      *
  77.      * @ORM\ManyToOne(targetEntity="App\Entity\Cvs\BigCategories")
  78.      * @ORM\JoinColumns({
  79.      *   @ORM\JoinColumn(name="big_category_id", referencedColumnName="id", nullable=true)
  80.      * })
  81.      */
  82.     protected $bigCategory;
  83.     /**
  84.      * @ORM\PrePersist
  85.      */
  86.     public function setCreatedAtValue(): void
  87.     {
  88.         $this->setCreatedAt(new \DateTime("now"));
  89.         $this->setUpdatedAt(new \DateTime("now"));
  90.     }
  91.     /**
  92.      * @ORM\PreUpdate
  93.      */
  94.     public function setUpdatedAtValue(): void
  95.     {
  96.         $this->setUpdatedAt(new \DateTime("now"));
  97.     }
  98.     public function __toString()
  99.     {
  100.         return $this->title;
  101.     }
  102.     public function getId(): ?int
  103.     {
  104.         return $this->id;
  105.     }
  106.     public function getCreatedAt(): ?\DateTimeInterface
  107.     {
  108.         return $this->createdAt;
  109.     }
  110.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  111.     {
  112.         $this->createdAt $createdAt;
  113.         return $this;
  114.     }
  115.     public function getUpdatedAt(): ?\DateTimeInterface
  116.     {
  117.         return $this->updatedAt;
  118.     }
  119.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  120.     {
  121.         $this->updatedAt $updatedAt;
  122.         return $this;
  123.     }
  124.     public function getTitle(): ?string
  125.     {
  126.         return $this->title;
  127.     }
  128.     public function setTitle(?string $title): self
  129.     {
  130.         $this->title $title;
  131.         return $this;
  132.     }
  133.     public function getDescription(): ?string
  134.     {
  135.         return $this->description;
  136.     }
  137.     public function setDescription(?string $description): static
  138.     {
  139.         $this->description $description;
  140.         return $this;
  141.     }
  142.     public function getIcon(): ?string
  143.     {
  144.         return $this->icon;
  145.     }
  146.     public function setIcon(?string $icon): static
  147.     {
  148.         $this->icon $icon;
  149.         return $this;
  150.     }
  151.     public function getShortTitle(): ?string
  152.     {
  153.         return $this->shortTitle;
  154.     }
  155.     public function setShortTitle(?string $shortTitle): static
  156.     {
  157.         $this->shortTitle $shortTitle;
  158.         return $this;
  159.     }
  160.     public function getShortDescription(): ?string
  161.     {
  162.         return $this->shortDescription;
  163.     }
  164.     public function setShortDescription(?string $shortDescription): static
  165.     {
  166.         $this->shortDescription $shortDescription;
  167.         return $this;
  168.     }
  169.     public function getSlug(): ?string
  170.     {
  171.         return $this->slug;
  172.     }
  173.     public function setSlug(?string $slug): static
  174.     {
  175.         $this->slug $slug;
  176.         return $this;
  177.     }
  178.     public function getBigCategory(): ?BigCategories
  179.     {
  180.         return $this->bigCategory;
  181.     }
  182.     public function setBigCategory(?BigCategories $bigCategory): static
  183.     {
  184.         $this->bigCategory $bigCategory;
  185.         return $this;
  186.     }
  187. }