src/Entity/Pages/Contents.php line 23

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Pages;
  3. use App\Entity\Fiches\Articles;
  4. use Doctrine\DBAL\Types\Types;
  5. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  9. use Symfony\Component\HttpFoundation\File\File;
  10. use Symfony\Component\HttpFoundation\File\UploadedFile;
  11. use Vich\UploaderBundle\Entity\File as EmbeddedFile;
  12. /**
  13.  * Pages
  14.  *
  15.  * @ORM\Table("pages_contents")
  16.  * @ORM\Entity(repositoryClass="App\Repository\Pages\ContentsRepository")
  17.  * @ORM\HasLifecycleCallbacks()
  18.  * @Vich\Uploadable
  19.  */
  20. class Contents
  21. {
  22.     /**
  23.      * @var integer
  24.      *
  25.      * @ORM\Column(name="id", type="integer")
  26.      * @ORM\Id
  27.      * @ORM\GeneratedValue(strategy="AUTO")
  28.      */
  29.     protected $id;
  30.     /**
  31.      * @var string
  32.      *
  33.      * @ORM\Column(name="created_at", type="datetime", nullable=true, options={"comment":"Date de création"})
  34.      */
  35.     private $createdAt;
  36.     /**
  37.      * @var string
  38.      *
  39.      * @ORM\Column(name="updated_at", type="datetime", nullable=true, options={"comment":"Date de mise à jour"})
  40.      */
  41.     private $updatedAt;
  42.     /**
  43.      * @var string
  44.      *
  45.      * @ORM\Column(name="folder_slug", type="string", length=255, nullable=true)
  46.      */
  47.     private $folderSlug;
  48.     /**
  49.      * @var string
  50.      *
  51.      * @ORM\Column(name="folder_slug2", type="string", length=255, nullable=true)
  52.      */
  53.     private $folderSlug2;
  54.     /**
  55.      * @var string
  56.      *
  57.      * @ORM\Column(name="folder_slug3", type="string", length=255, nullable=true)
  58.      */
  59.     private $folderSlug3;
  60.     /**
  61.      * @var string
  62.      *
  63.      * @ORM\Column(name="title", type="string", length=255, nullable=true)
  64.      */
  65.     private $title;
  66.     /**
  67.      * @var string
  68.      *
  69.      * @ORM\Column(name="tag", type="string", length=255, nullable=true)
  70.      */
  71.     private $tag;
  72.     /**
  73.      * @var string
  74.      *
  75.      * @ORM\Column(name="status", type="string", length=255, nullable=true)
  76.      */
  77.     private $status;
  78.     /**
  79.      * @var string
  80.      *
  81.      * @ORM\Column(name="theme", type="string", length=255, nullable=true)
  82.      */
  83.     private $theme;
  84.     /**
  85.      * @var string
  86.      *
  87.      * @ORM\Column(name="short_title", type="string", length=255, nullable=true)
  88.      */
  89.     private $shortTitle;
  90.     /**
  91.      * @var string
  92.      *
  93.      * @ORM\Column(name="short_description", type="text", nullable=true)
  94.      */
  95.     private $shortDescription;
  96.     /**
  97.      * @var string
  98.      *
  99.      * @ORM\Column(name="description_cover", type="text", nullable=true)
  100.      */
  101.     private $descriptionCover;
  102.     /**
  103.      * @var string
  104.      *
  105.      * @ORM\Column(name="description_content", type="text", nullable=true)
  106.      */
  107.     private $descriptionContent;
  108.     /**
  109.      * @var string
  110.      *
  111.      * @ORM\Column(name="description_content_end", type="text", nullable=true)
  112.      */
  113.     private $descriptionContentEnd;
  114.     /**
  115.      * @var string
  116.      *
  117.      * @ORM\Column(name="title_mitillo_plus", type="text", nullable=true)
  118.      */
  119.     private $titleMirtilloPlus;
  120.     /**
  121.      * @var string
  122.      *
  123.      * @ORM\Column(name="path_mirtillo_plus", type="text", nullable=true)
  124.      */
  125.     private $pathMirtilloPlus;
  126.     /**
  127.      * @var string
  128.      *
  129.      * @ORM\Column(name="description_mirtillo_plus", type="text", nullable=true)
  130.      */
  131.     private $descriptionMirtilloPlus;
  132.     /**
  133.      * @var string
  134.      *
  135.      * @ORM\Column(name="title_button_mirtillo_plus", type="text", nullable=true)
  136.      */
  137.     private $titleButtonMirtilloPlus;
  138.     /**
  139.      * @var string
  140.      *
  141.      * @ORM\Column(name="description_after_cover", type="text", nullable=true)
  142.      */
  143.     private $descriptionAfterContent;
  144.     /**
  145.      * @var \Pages
  146.      *
  147.      * @ORM\ManyToOne(targetEntity="Pages")
  148.      * @ORM\JoinColumns({
  149.      *   @ORM\JoinColumn(name="page_id", referencedColumnName="id", nullable=true)
  150.      * })
  151.      */
  152.     protected $page;
  153.     /**
  154.      * @ORM\PrePersist
  155.      */
  156.     public function setCreatedAtValue(): void
  157.     {
  158.         $this->setCreatedAt(new \DateTime("now"));
  159.         $this->setUpdatedAt(new \DateTime("now"));
  160.         $this->setStatus("brouillon");
  161.     }
  162.     /**
  163.      * @ORM\PreUpdate
  164.      */
  165.     public function setUpdatedAtValue(): void
  166.     {
  167.         $this->setUpdatedAt(new \DateTime("now"));
  168.     }
  169.     public function __toString()
  170.     {
  171.         return (string)$this->title;
  172.     }
  173.     public function getId(): ?int
  174.     {
  175.         return $this->id;
  176.     }
  177.     public function getCreatedAt(): ?\DateTimeInterface
  178.     {
  179.         return $this->createdAt;
  180.     }
  181.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  182.     {
  183.         $this->createdAt $createdAt;
  184.         return $this;
  185.     }
  186.     public function getUpdatedAt(): ?\DateTimeInterface
  187.     {
  188.         return $this->updatedAt;
  189.     }
  190.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  191.     {
  192.         $this->updatedAt $updatedAt;
  193.         return $this;
  194.     }
  195.     public function getFolderSlug(): ?string
  196.     {
  197.         return $this->folderSlug;
  198.     }
  199.     public function setFolderSlug(?string $folderSlug): self
  200.     {
  201.         $this->folderSlug $folderSlug;
  202.         return $this;
  203.     }
  204.     public function getFolderSlug2(): ?string
  205.     {
  206.         return $this->folderSlug2;
  207.     }
  208.     public function setFolderSlug2(?string $folderSlug2): self
  209.     {
  210.         $this->folderSlug2 $folderSlug2;
  211.         return $this;
  212.     }
  213.     public function getTitle(): ?string
  214.     {
  215.         return $this->title;
  216.     }
  217.     public function setTitle(?string $title): self
  218.     {
  219.         $this->title $title;
  220.         return $this;
  221.     }
  222.     public function getStatus(): ?string
  223.     {
  224.         return $this->status;
  225.     }
  226.     public function setStatus(?string $status): self
  227.     {
  228.         $this->status $status;
  229.         return $this;
  230.     }
  231.     public function getShortTitle(): ?string
  232.     {
  233.         return $this->shortTitle;
  234.     }
  235.     public function setShortTitle(?string $shortTitle): self
  236.     {
  237.         $this->shortTitle $shortTitle;
  238.         return $this;
  239.     }
  240.     public function getShortDescription(): ?string
  241.     {
  242.         return $this->shortDescription;
  243.     }
  244.     public function setShortDescription(?string $shortDescription): self
  245.     {
  246.         $this->shortDescription $shortDescription;
  247.         return $this;
  248.     }
  249.     public function getDescriptionCover(): ?string
  250.     {
  251.         return $this->descriptionCover;
  252.     }
  253.     public function setDescriptionCover(?string $descriptionCover): self
  254.     {
  255.         $this->descriptionCover $descriptionCover;
  256.         return $this;
  257.     }
  258.     public function getDescriptionContent(): ?string
  259.     {
  260.         return $this->descriptionContent;
  261.     }
  262.     public function setDescriptionContent(?string $descriptionContent): self
  263.     {
  264.         $this->descriptionContent $descriptionContent;
  265.         return $this;
  266.     }
  267.     public function getTitleMirtilloPlus(): ?string
  268.     {
  269.         return $this->titleMirtilloPlus;
  270.     }
  271.     public function setTitleMirtilloPlus(?string $titleMirtilloPlus): self
  272.     {
  273.         $this->titleMirtilloPlus $titleMirtilloPlus;
  274.         return $this;
  275.     }
  276.     public function getPathMirtilloPlus(): ?string
  277.     {
  278.         return $this->pathMirtilloPlus;
  279.     }
  280.     public function setPathMirtilloPlus(?string $pathMirtilloPlus): self
  281.     {
  282.         $this->pathMirtilloPlus $pathMirtilloPlus;
  283.         return $this;
  284.     }
  285.     public function getDescriptionAfterContent(): ?string
  286.     {
  287.         return $this->descriptionAfterContent;
  288.     }
  289.     public function setDescriptionAfterContent(?string $descriptionAfterContent): self
  290.     {
  291.         $this->descriptionAfterContent $descriptionAfterContent;
  292.         return $this;
  293.     }
  294.     public function getPage(): ?Pages
  295.     {
  296.         return $this->page;
  297.     }
  298.     public function setPage(?Pages $page): self
  299.     {
  300.         $this->page $page;
  301.         return $this;
  302.     }
  303.     public function getFolderSlug3(): ?string
  304.     {
  305.         return $this->folderSlug3;
  306.     }
  307.     public function setFolderSlug3(?string $folderSlug3): self
  308.     {
  309.         $this->folderSlug3 $folderSlug3;
  310.         return $this;
  311.     }
  312.     public function getDescriptionContentEnd(): ?string
  313.     {
  314.         return $this->descriptionContentEnd;
  315.     }
  316.     public function setDescriptionContentEnd(?string $descriptionContentEnd): self
  317.     {
  318.         $this->descriptionContentEnd $descriptionContentEnd;
  319.         return $this;
  320.     }
  321.     public function getDescriptionMirtilloPlus(): ?string
  322.     {
  323.         return $this->descriptionMirtilloPlus;
  324.     }
  325.     public function setDescriptionMirtilloPlus(?string $descriptionMirtilloPlus): self
  326.     {
  327.         $this->descriptionMirtilloPlus $descriptionMirtilloPlus;
  328.         return $this;
  329.     }
  330.     public function getTitleButtonMirtilloPlus(): ?string
  331.     {
  332.         return $this->titleButtonMirtilloPlus;
  333.     }
  334.     public function setTitleButtonMirtilloPlus(?string $titleButtonMirtilloPlus): self
  335.     {
  336.         $this->titleButtonMirtilloPlus $titleButtonMirtilloPlus;
  337.         return $this;
  338.     }
  339.     public function getTheme(): ?string
  340.     {
  341.         return $this->theme;
  342.     }
  343.     public function setTheme(?string $theme): self
  344.     {
  345.         $this->theme $theme;
  346.         return $this;
  347.     }
  348.     public function getTag(): ?string
  349.     {
  350.         return $this->tag;
  351.     }
  352.     public function setTag(?string $tag): self
  353.     {
  354.         $this->tag $tag;
  355.         return $this;
  356.     }
  357. }