src/Entity/Pages.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\PagesRepository")
  6.  */
  7. class Pages
  8. {
  9.     public function __construct(){
  10.         $this->date = new \DateTime;
  11.     }
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="title", type="string", length=255,nullable=true)
  24.      */
  25.     private $title;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="titleAlt", type="string", length=255,nullable=true)
  30.      */
  31.     private $titleAlt;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="pictureTitle", type="string", length=255,nullable=true)
  36.      */
  37.     private $pictureTitle;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="pictureSubtitle", type="string", length=255,nullable=true)
  42.      */
  43.     private $pictureSubtitle;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="description", type="text", nullable=true)
  48.      */
  49.     private $description;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="content", type="text",nullable=true)
  54.      */
  55.     private $content;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="slug", type="string", length=255,nullable=true)
  60.      */
  61.     private $slug;
  62.     /**
  63.      * @var \DateTime
  64.      *
  65.      * @ORM\Column(name="lastUpdate", type="datetime")
  66.      */
  67.     private $lastUpdate;
  68.     /**
  69.      * @var \DateTime|null
  70.      *
  71.      * @ORM\Column(name="date", type="datetime", nullable=true)
  72.      */
  73.     private $date;
  74.     /**
  75.      * @ORM\ManyToOne(targetEntity="App\Entity\Users")
  76.      * @ORM\JoinColumn(name="createdBy",nullable=true)
  77.      */
  78.     private $createdBy;
  79.     /**
  80.      * @ORM\ManyToOne(targetEntity="App\Entity\Users")
  81.      * @ORM\JoinColumn(name="updatedBy",nullable=true)
  82.      */
  83.     private $updatedBy;
  84.      /**
  85.       * @ORM\ManyToOne(targetEntity="App\Entity\Users")
  86.       */
  87.     private $user;
  88.     /**
  89.      * @var bool
  90.      *
  91.      * @ORM\Column(name="isEnabled", type="boolean",nullable=true)
  92.      */
  93.     private $isEnabled;
  94.     /**
  95.      * @ORM\OneToOne(targetEntity="App\Entity\Picture", cascade={"persist","remove"}, orphanRemoval=true)
  96.      * @ORM\JoinColumn(nullable=true)
  97.      */
  98.     private $picture;
  99.     /**
  100.      * @ORM\OneToOne(targetEntity="App\Entity\Picture", cascade={"persist","remove"}, orphanRemoval=true)
  101.      * @ORM\JoinColumn(nullable=true)
  102.      */
  103.     private $banner;
  104.     public function getId(): ?int
  105.     {
  106.         return $this->id;
  107.     }
  108.     public function getTitle(): ?string
  109.     {
  110.         return $this->title;
  111.     }
  112.     public function setTitle(?string $title): self
  113.     {
  114.         $this->title $title;
  115.         return $this;
  116.     }
  117.     public function getTitleAlt(): ?string
  118.     {
  119.         return $this->titleAlt;
  120.     }
  121.     public function setTitleAlt(?string $title): self
  122.     {
  123.         $this->titleAlt $title;
  124.         return $this;
  125.     }
  126.     public function getPictureTitle(): ?string
  127.     {
  128.         return $this->pictureTitle;
  129.     }
  130.     public function setPictureTitle(?string $title): self
  131.     {
  132.         $this->pictureTitle $title;
  133.         return $this;
  134.     }
  135.     public function getPictureSubtitle(): ?string
  136.     {
  137.         return $this->pictureSubtitle;
  138.     }
  139.     public function setPictureSubtitle(?string $title): self
  140.     {
  141.         $this->pictureSubtitle $title;
  142.         return $this;
  143.     }
  144.     public function getDescription(): ?string
  145.     {
  146.         return $this->description;
  147.     }
  148.     public function setDescription(?string $description): self
  149.     {
  150.         $this->description $description;
  151.         return $this;
  152.     }
  153.     public function getContent(): ?string
  154.     {
  155.         return $this->content;
  156.     }
  157.     public function setContent(?string $content): self
  158.     {
  159.         $this->content $content;
  160.         return $this;
  161.     }
  162.     public function getSlug(): ?string
  163.     {
  164.         return $this->slug;
  165.     }
  166.     public function setSlug(?string $slug): self
  167.     {
  168.         $this->slug $slug;
  169.         return $this;
  170.     }
  171.     public function getLastUpdate(): ?\DateTimeInterface
  172.     {
  173.         return $this->lastUpdate;
  174.     }
  175.     public function setLastUpdate(\DateTimeInterface $lastUpdate): self
  176.     {
  177.         $this->lastUpdate $lastUpdate;
  178.         return $this;
  179.     }
  180.     public function getDate(): ?\DateTimeInterface
  181.     {
  182.         return $this->date;
  183.     }
  184.     public function setDate(?\DateTimeInterface $date): self
  185.     {
  186.         $this->date $date;
  187.         return $this;
  188.     }
  189.     public function getCreatedBy(): ?Users
  190.     {
  191.         return $this->createdBy;
  192.     }
  193.     public function setCreatedBy(?Users $createdBy): self
  194.     {
  195.         $this->createdBy $createdBy;
  196.         return $this;
  197.     }
  198.     public function getUpdatedBy(): ?Users
  199.     {
  200.         return $this->updatedBy;
  201.     }
  202.     public function setUpdatedBy(?Users $updatedBy): self
  203.     {
  204.         $this->updatedBy $updatedBy;
  205.         return $this;
  206.     }
  207.     public function getUser(): ?Users
  208.     {
  209.         return $this->user;
  210.     }
  211.     public function setUser(?Users $user): self
  212.     {
  213.         $this->user $user;
  214.         return $this;
  215.     }
  216.     public function getIsEnabled(): ?bool
  217.     {
  218.         return $this->isEnabled;
  219.     }
  220.     public function setIsEnabled(?bool $isEnabled): self
  221.     {
  222.         $this->isEnabled $isEnabled;
  223.         return $this;
  224.     }
  225.     public function getPicture(): ?Picture
  226.     {
  227.         return $this->picture;
  228.     }
  229.     public function setPicture(?Picture $picture): self
  230.     {
  231.         if($picture->getTarget()){
  232.             $this->picture $picture;
  233.             $this->picture->setDir('upload/images/pages');
  234.             $this->picture->setThumbnailDir('upload/thumbnails/pages');
  235.         }
  236.         return $this;
  237.     }
  238.     public function getBanner(): ?Picture
  239.     {
  240.         return $this->banner;
  241.     }
  242.     public function setBanner(?Picture $banner): self
  243.     {
  244.         if($banner->getTarget()){
  245.             $this->banner $banner;
  246.             $this->banner->setDir('upload/images/pages');
  247.             $this->banner->setThumbnailDir('upload/thumbnails/pages');
  248.         }
  249.         return $this;
  250.     }
  251. }