src/Entity/Fiches/Articles.php line 25

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Fiches;
  3. use App\Entity\Core\Users;
  4. use Doctrine\DBAL\Types\Types;
  5. use Symfony\Component\Serializer\Annotation\Groups;
  6. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  7. use Symfony\Component\Validator\Constraints as Assert;
  8. use Doctrine\ORM\Mapping as ORM;
  9. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  10. use Symfony\Component\HttpFoundation\File\File;
  11. use App\Repository\Fiches\ArticlesRepository;
  12. use Symfony\Component\HttpFoundation\File\UploadedFile;
  13. use Vich\UploaderBundle\Entity\File as EmbeddedFile;
  14. /**
  15.  * Articles
  16.  *
  17.  * @ORM\Table("fiches_articles")
  18.  * @ORM\Entity(repositoryClass=ArticlesRepository::class)
  19.  * @ORM\HasLifecycleCallbacks()
  20.  * @Vich\Uploadable
  21.  */
  22. class Articles {
  23.     /**
  24.      * @var integer
  25.      *
  26.      * @ORM\Column(name="id", type="integer")
  27.      * @ORM\Id
  28.      * @ORM\GeneratedValue(strategy="AUTO")
  29.      * [Groups(['list', 'item'])]
  30.      */
  31.     protected $id;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="created_at", type="datetime", nullable=true, options={"comment":"Date de création"})
  36.      */
  37.     private $createdAt;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="updated_at", type="datetime", nullable=true, options={"comment":"Date de mise à jour"})
  42.      */
  43.     private $updatedAt;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="title", type="string", length=500, nullable=true)
  48.      */
  49.     private $title;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="short_title", type="string", length=255, nullable=true)
  54.      */
  55.     private $shortTitle;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="short_description", type="text", nullable=true)
  60.      */
  61.     private $shortDescription;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="folder_slug", type="string", length=255, nullable=true)
  66.      */
  67.     private $folderSlug;
  68.     /**
  69.      * @var string
  70.      *
  71.      * @ORM\Column(name="folder_slug2", type="string", length=255, nullable=true)
  72.      */
  73.     private $folderSlug2;
  74.     /**
  75.      * @var string
  76.      *
  77.      * @ORM\Column(name="folder_slug3", type="string", length=255, nullable=true)
  78.      */
  79.     private $folderSlug3;
  80.     /**
  81.      * @var string
  82.      *
  83.      * @ORM\Column(name="tag", type="string", length=255, nullable=true)
  84.      */
  85.     private $tag;
  86.     /**
  87.      * @var \Categories
  88.      *
  89.      * @ORM\ManyToOne(targetEntity="App\Entity\Fiches\Categories")
  90.      * @ORM\JoinColumns({
  91.      *   @ORM\JoinColumn(name="category_id", referencedColumnName="id", nullable=true)
  92.      * })
  93.      */
  94.     protected $category;
  95.     /**
  96.      * @var string
  97.      *
  98.      * @ORM\Column(name="description", type="text", nullable=true)
  99.      */
  100.     private $description;
  101.     /**
  102.      * @var string
  103.      *
  104.      * @ORM\Column(name="description_premium", type="text", nullable=true)
  105.      */
  106.     private $descriptionPremium;
  107.     /**
  108.      * @var \Users
  109.      *
  110.      * @ORM\ManyToOne(targetEntity="App\Entity\Core\Users")
  111.      * @ORM\JoinColumns({
  112.      *   @ORM\JoinColumn(name="user_id", referencedColumnName="id", nullable=true)
  113.      * })
  114.      */
  115.     protected $user;
  116.     /**
  117.      * @var string
  118.      *
  119.      * @ORM\Column(name="status", type="string", length=255, nullable=true)
  120.      */
  121.     private $status;
  122.     /**
  123.      * @var string
  124.      *
  125.      * @ORM\Column(name="theme", type="string", length=255, nullable=true)
  126.      */
  127.     private $theme;
  128.     /**
  129.      * @ORM\PrePersist
  130.      */
  131.     public function setCreatedAtValue(): void {
  132.         $this->setCreatedAt(new \DateTime("now"));
  133.         $this->setUpdatedAt(new \DateTime("now"));
  134.     }
  135.     /**
  136.      * @ORM\PreUpdate
  137.      */
  138.     public function setUpdatedAtValue(): void {
  139.         $this->setUpdatedAt(new \DateTime("now"));
  140.     }
  141.     public function __toString()
  142.     {
  143.         return $this->title;
  144.     }
  145.     public function getId(): ?int
  146.     {
  147.         return $this->id;
  148.     }
  149.     public function getCreatedAt(): ?\DateTimeInterface
  150.     {
  151.         return $this->createdAt;
  152.     }
  153.     public function setCreatedAt(?\DateTimeInterface $createdAt): static
  154.     {
  155.         $this->createdAt $createdAt;
  156.         return $this;
  157.     }
  158.     public function getUpdatedAt(): ?\DateTimeInterface
  159.     {
  160.         return $this->updatedAt;
  161.     }
  162.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): static
  163.     {
  164.         $this->updatedAt $updatedAt;
  165.         return $this;
  166.     }
  167.     public function getTitle(): ?string
  168.     {
  169.         return $this->title;
  170.     }
  171.     public function setTitle(?string $title): static
  172.     {
  173.         $this->title $title;
  174.         return $this;
  175.     }
  176.     public function getShortTitle(): ?string
  177.     {
  178.         return $this->shortTitle;
  179.     }
  180.     public function setShortTitle(?string $shortTitle): static
  181.     {
  182.         $this->shortTitle $shortTitle;
  183.         return $this;
  184.     }
  185.     public function getShortDescription(): ?string
  186.     {
  187.         return $this->shortDescription;
  188.     }
  189.     public function setShortDescription(?string $shortDescription): static
  190.     {
  191.         $this->shortDescription $shortDescription;
  192.         return $this;
  193.     }
  194.     public function getFolderSlug(): ?string
  195.     {
  196.         return $this->folderSlug;
  197.     }
  198.     public function setFolderSlug(?string $folderSlug): static
  199.     {
  200.         $this->folderSlug $folderSlug;
  201.         return $this;
  202.     }
  203.     public function getFolderSlug2(): ?string
  204.     {
  205.         return $this->folderSlug2;
  206.     }
  207.     public function setFolderSlug2(?string $folderSlug2): static
  208.     {
  209.         $this->folderSlug2 $folderSlug2;
  210.         return $this;
  211.     }
  212.     public function getFolderSlug3(): ?string
  213.     {
  214.         return $this->folderSlug3;
  215.     }
  216.     public function setFolderSlug3(?string $folderSlug3): static
  217.     {
  218.         $this->folderSlug3 $folderSlug3;
  219.         return $this;
  220.     }
  221.     public function getTag(): ?string
  222.     {
  223.         return $this->tag;
  224.     }
  225.     public function setTag(?string $tag): static
  226.     {
  227.         $this->tag $tag;
  228.         return $this;
  229.     }
  230.     public function getDescription(): ?string
  231.     {
  232.         return $this->description;
  233.     }
  234.     public function setDescription(?string $description): static
  235.     {
  236.         $this->description $description;
  237.         return $this;
  238.     }
  239.     public function getDescriptionPremium(): ?string
  240.     {
  241.         return $this->descriptionPremium;
  242.     }
  243.     public function setDescriptionPremium(?string $descriptionPremium): static
  244.     {
  245.         $this->descriptionPremium $descriptionPremium;
  246.         return $this;
  247.     }
  248.     public function getStatus(): ?string
  249.     {
  250.         return $this->status;
  251.     }
  252.     public function setStatus(?string $status): static
  253.     {
  254.         $this->status $status;
  255.         return $this;
  256.     }
  257.     public function getTheme(): ?string
  258.     {
  259.         return $this->theme;
  260.     }
  261.     public function setTheme(?string $theme): static
  262.     {
  263.         $this->theme $theme;
  264.         return $this;
  265.     }
  266.     public function getCategory(): ?Categories
  267.     {
  268.         return $this->category;
  269.     }
  270.     public function setCategory(?Categories $category): static
  271.     {
  272.         $this->category $category;
  273.         return $this;
  274.     }
  275.     public function getUser(): ?Users
  276.     {
  277.         return $this->user;
  278.     }
  279.     public function setUser(?Users $user): static
  280.     {
  281.         $this->user $user;
  282.         return $this;
  283.     }
  284. }