src/Entity/Articles.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. /**
  8.  * @ORM\Entity(repositoryClass="App\Repository\ArticlesRepository")
  9.  */
  10. class Articles
  11. {
  12.     public function __construct(){
  13.                  $this->date = new \DateTime;
  14.                  $this->isEnabled false;
  15.                  $this->isVisible true;
  16.                  $this->isDeleted false;
  17.                  $this->tags = new ArrayCollection();
  18.              }
  19.     /**
  20.      * @var int
  21.      *
  22.      * @ORM\Column(name="id", type="integer")
  23.      * @ORM\Id
  24.      * @ORM\GeneratedValue(strategy="AUTO")
  25.      */
  26.     private $id;
  27.     /**
  28.      * @var string
  29.      *
  30.      * @ORM\Column(name="title", type="string", length=255,nullable=true)
  31.      */
  32.     private $title;
  33.     /**
  34.      * @var string
  35.      *
  36.      * @ORM\Column(name="description", type="text", nullable=true)
  37.      */
  38.     private $description;
  39.     /**
  40.      * @var string
  41.      *
  42.      * @ORM\Column(name="content", type="text",nullable=true)
  43.      */
  44.     private $content;
  45.     /**
  46.      * @var string
  47.      *
  48.      * @ORM\Column(name="slug", type="string", length=255,nullable=true)
  49.      */
  50.     private $slug;
  51.     /**
  52.      * @var \DateTime
  53.      *
  54.      * @ORM\Column(name="createdAt", type="datetime", nullable=true)
  55.      */
  56.     private $createdAt;
  57.     /**
  58.      * @var \DateTime
  59.      *
  60.      * @ORM\Column(name="lastUpdate", type="datetime", nullable=true)
  61.      */
  62.     private $lastUpdate;
  63.     /**
  64.      * @var \DateTime|null
  65.      *
  66.      * @ORM\Column(name="date", type="datetime", nullable=true)
  67.      */
  68.     private $date;
  69.     /**
  70.      * @var bool
  71.      *
  72.      * @ORM\Column(name="isEnabled", type="boolean", nullable=true)
  73.      */
  74.     private $isEnabled;
  75.     /**
  76.      * @var bool
  77.      *
  78.      * @ORM\Column(name="isOnFrontPage", type="boolean", nullable=true)
  79.      */
  80.     private $isOnFrontPage;
  81.     /**
  82.      * @var bool
  83.      *
  84.      * @ORM\Column(name="isVisible", type="boolean",nullable=true)
  85.      */
  86.     private $isVisible;
  87.     /**
  88.      * @var bool
  89.      *
  90.      * @ORM\Column(name="isDeleted", type="boolean",nullable=true)
  91.      */
  92.     private $isDeleted;
  93.     /**
  94.      * @var string
  95.      *
  96.      * @ORM\Column(name="youtube", type="string", length=255, nullable=true)
  97.      */
  98.     private $youtube;
  99.     /**
  100.      * @var string
  101.      *
  102.      * @ORM\Column(name="flickr", type="string", length=255, nullable=true)
  103.      */
  104.     private $flickr;
  105.     /**
  106.      * @var string
  107.      *
  108.      * @ORM\Column(name="URL", type="string", length=255, nullable=true)
  109.      */
  110.     private $URL;
  111.     /**
  112.      * @var string
  113.      *
  114.      * @ORM\Column(name="soundcloud", type="string", length=255, nullable=true)
  115.      */
  116.     private $soundcloud;
  117.     /**
  118.      * @ORM\ManyToOne(targetEntity="App\Entity\Users")
  119.      * @ORM\JoinColumn(name="updatedBy",nullable=true)
  120.      */
  121.     private $updatedBy;
  122.     /**
  123.      * @ORM\OneToOne(targetEntity="App\Entity\Picture", cascade={"persist","remove"}, orphanRemoval=true, fetch="EAGER")
  124.      * @ORM\JoinColumn(nullable=true)
  125.      */
  126.     private $banner;
  127.     /**
  128.      * @ORM\ManyToOne(targetEntity="App\Entity\ArticlesCategories", inversedBy="articles", fetch="EAGER")
  129.      * @ORM\JoinColumn(nullable=true)
  130.      */
  131.     private $category;
  132.     /**
  133.      * @ORM\ManyToOne(targetEntity="App\Entity\ArticlesTypes",inversedBy="articles", fetch="EAGER")
  134.      * @ORM\JoinColumn(nullable=true)
  135.      */
  136.     private $type;
  137.      /**
  138.       * @ORM\ManyToOne(targetEntity="App\Entity\Users", fetch="EAGER")
  139.       */
  140.     private $user;
  141.     /**
  142.      * @ORM\OneToOne(targetEntity="App\Entity\Albums", cascade={"persist","remove"}, orphanRemoval=true, fetch="EAGER")
  143.      * @ORM\JoinColumn(nullable=true)
  144.      */
  145.     private $album;
  146.     /**
  147.      * @ORM\OneToOne(targetEntity="App\Entity\Biblios", cascade={"persist","remove"}, orphanRemoval=true, fetch="EAGER")
  148.      * @ORM\JoinColumn(nullable=true)
  149.      */
  150.     private $biblio;
  151.     /**
  152.      * @ORM\ManyToMany(targetEntity=Tags::class)
  153.      */
  154.     private $tags;
  155.     public function getId(): ?int
  156.     {
  157.         return $this->id;
  158.     }
  159.     public function getTitle(): ?string
  160.     {
  161.         return $this->title;
  162.     }
  163.     public function setTitle(?string $title): self
  164.     {
  165.         $this->title $title;
  166.         return $this;
  167.     }
  168.     public function getDescription(): ?string
  169.     {
  170.         return $this->description;
  171.     }
  172.     public function setDescription(?string $description): self
  173.     {
  174.         $this->description $description;
  175.         return $this;
  176.     }
  177.     public function getContent(): ?string
  178.     {
  179.         return $this->content;
  180.     }
  181.     public function setContent(?string $content): self
  182.     {
  183.         $this->content $content;
  184.         return $this;
  185.     }
  186.     public function getSlug(): ?string
  187.     {
  188.         return $this->slug;
  189.     }
  190.     public function setSlug(?string $slug): self
  191.     {
  192.         $this->slug $slug;
  193.         return $this;
  194.     }
  195.     public function getCreatedAt(): ?\DateTimeInterface
  196.     {
  197.         return $this->createdAt;
  198.     }
  199.     public function setCreatedAt(\DateTimeInterface $date): self
  200.     {
  201.         $this->createdAt $date;
  202.         return $this;
  203.     }
  204.     public function getLastUpdate(): ?\DateTimeInterface
  205.     {
  206.         return $this->lastUpdate;
  207.     }
  208.     public function setLastUpdate(\DateTimeInterface $lastUpdate): self
  209.     {
  210.         $this->lastUpdate $lastUpdate;
  211.         return $this;
  212.     }
  213.     public function getDate(): ?\DateTimeInterface
  214.     {
  215.         return $this->date;
  216.     }
  217.     public function setDate(?\DateTimeInterface $date): self
  218.     {
  219.         $this->date $date;
  220.         return $this;
  221.     }
  222.     public function getIsEnabled(): ?bool
  223.     {
  224.         return $this->isEnabled;
  225.     }
  226.     public function setIsEnabled(?bool $isEnabled): self
  227.     {
  228.         $this->isEnabled $isEnabled;
  229.         return $this;
  230.     }
  231.     public function getIsOnFrontPage(): ?bool
  232.     {
  233.         return $this->isOnFrontPage;
  234.     }
  235.     public function setIsOnFrontPage(?bool $isOnFrontPage): self
  236.     {
  237.         $this->isOnFrontPage $isOnFrontPage;
  238.         return $this;
  239.     }
  240.     public function getIsVisible(): ?bool
  241.     {
  242.         return $this->isVisible;
  243.     }
  244.     public function setIsVisible(?bool $isVisible): self
  245.     {
  246.         $this->isVisible $isVisible;
  247.         return $this;
  248.     }
  249.     public function getIsDeleted(): ?bool
  250.     {
  251.         return $this->isDeleted;
  252.     }
  253.     public function setIsDeleted(?bool $isDeleted): self
  254.     {
  255.         $this->isDeleted $isDeleted;
  256.         return $this;
  257.     }
  258.     public function getYoutube(): ?string
  259.     {
  260.         return $this->youtube;
  261.     }
  262.     public function setYoutube(?string $youtube): self
  263.     {
  264.         $this->youtube $youtube;
  265.         return $this;
  266.     }
  267.     public function getFlickr(): ?string
  268.     {
  269.         return $this->flickr;
  270.     }
  271.     public function setFlickr(?string $flickr): self
  272.     {
  273.         $this->flickr $flickr;
  274.         return $this;
  275.     }
  276.     public function getURL(): ?string
  277.     {
  278.         return $this->URL;
  279.     }
  280.     public function setURL(?string $URL): self
  281.     {
  282.         $this->URL $URL;
  283.         return $this;
  284.     }
  285.     public function getSoundcloud(): ?string
  286.     {
  287.         return $this->soundcloud;
  288.     }
  289.     public function setSoundcloud(?string $soundcloud): self
  290.     {
  291.         $this->soundcloud $soundcloud;
  292.         return $this;
  293.     }
  294.     public function getUpdatedBy(): ?Users
  295.     {
  296.         return $this->updatedBy;
  297.     }
  298.     public function setUpdatedBy(?Users $updatedBy): self
  299.     {
  300.         $this->updatedBy $updatedBy;
  301.         return $this;
  302.     }
  303.     public function getBanner(): ?Picture
  304.     {
  305.         return $this->banner;
  306.     }
  307.     public function setBanner(?Picture $banner): self
  308.     {
  309.         if($banner->getTarget()){
  310.             $this->banner $banner;
  311.             $this->banner->setDir('upload/images/articles/');
  312.             $this->banner->setThumbnailDir('upload/thumbnails/articles/');
  313.         }
  314.         return $this;
  315.     }
  316.     public function getCategory(): ?ArticlesCategories
  317.     {
  318.         return $this->category;
  319.     }
  320.     public function setCategory(?ArticlesCategories $category): self
  321.     {
  322.         $this->category $category;
  323.         return $this;
  324.     }
  325.     public function getUser(): ?Users
  326.     {
  327.         return $this->user;
  328.     }
  329.     public function setUser(?Users $user): self
  330.     {
  331.         $this->user $user;
  332.         return $this;
  333.     }
  334.     public function getAlbum(): ?Albums
  335.     {
  336.         return $this->album;
  337.     }
  338.     public function setAlbum(?Albums $album): self
  339.     {
  340.         $this->album $album;
  341.         return $this;
  342.     }
  343.     public function getBiblio(): ?Biblios
  344.     {
  345.         return $this->biblio;
  346.     }
  347.     public function setBiblio(?Biblios $biblio): self
  348.     {
  349.         $this->biblio $biblio;
  350.         return $this;
  351.     }
  352.     public function getType(): ?ArticlesTypes
  353.     {
  354.         return $this->type;
  355.     }
  356.     public function setType(?ArticlesTypes $type): self
  357.     {
  358.         $this->type $type;
  359.         return $this;
  360.     }
  361.     /**
  362.      * @return Collection|Tags[]
  363.      */
  364.     public function getTags(): Collection
  365.     {
  366.         return $this->tags;
  367.     }
  368.     public function addTag(Tags $tag): self
  369.     {
  370.         if (!$this->tags->contains($tag)) {
  371.             $this->tags[] = $tag;
  372.         }
  373.         return $this;
  374.     }
  375.     public function removeTag(Tags $tag): self
  376.     {
  377.         $this->tags->removeElement($tag);
  378.         return $this;
  379.     }
  380. }