src\Entity\Newsletter.php line 14

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. use Symfony\Component\HttpFoundation\File\File;
  8. /**
  9.  * @ORM\Entity(repositoryClass="App\Repository\NewsletterRepository")
  10.  */
  11. class Newsletter
  12. {
  13.     /**
  14.      * @ORM\Id()
  15.      * @ORM\GeneratedValue()
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\ManyToOne(targetEntity="App\Entity\User")
  21.      */
  22.     private $user;
  23.     /**
  24.      * @ORM\Column(type="string", length=255)
  25.      */
  26.     private $objet;
  27.     /**
  28.      * @ORM\Column(type="text", nullable=true)
  29.      */
  30.     private $description;
  31.     /**
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     private $type;
  35.     /**
  36.      * @ORM\Column(type="string")
  37.      */
  38.     private $image;
  39.     /**
  40.      * @ORM\Column(type="datetime")
  41.      */
  42.     private $create_at;
  43.     /**
  44.      * @ORM\Column(type="datetime", nullable=true)
  45.      */
  46.     private $update_at;
  47.     /**
  48.      * @ORM\Column(type="string")
  49.      */
  50.     private $mode;
  51.     /**
  52.      * @ORM\ManyToMany(targetEntity="App\Entity\Service", inversedBy="newsletter")
  53.      */
  54.     private $service;
  55.     /**
  56.      * @ORM\Column(type="datetime", nullable=true)
  57.      */
  58.     private $date_envoi;
  59.      function __construct()
  60.     {
  61.         
  62.         $this->create_at= new \DateTime('UTC');
  63.         $this->service = new ArrayCollection();
  64.         
  65.     }
  66.     public function getId(): ?int
  67.     {
  68.         return $this->id;
  69.     }
  70.     public function getUser(): ?User
  71.     {
  72.         return $this->user;
  73.     }
  74.     public function setUser(?User $user): self
  75.     {
  76.         $this->user $user;
  77.         return $this;
  78.     }
  79.     public function getObjet(): ?string
  80.     {
  81.         return $this->objet;
  82.     }
  83.     public function setObjet(string $objet): self
  84.     {
  85.         $this->objet $objet;
  86.         return $this;
  87.     }
  88.     public function getDescription(): ?string
  89.     {
  90.         return $this->description;
  91.     }
  92.     public function setDescription(?string $description): self
  93.     {
  94.         $this->description $description;
  95.         return $this;
  96.     }
  97.     public function getType(): ?string
  98.     {
  99.         return $this->type;
  100.     }
  101.     public function setType(?string $type): self
  102.     {
  103.         $this->type $type;
  104.         return $this;
  105.     }
  106.     public function getImage()
  107.     {
  108.         return $this->image;
  109.     }
  110.     public function setImage($image)
  111.     {
  112.         $this->image $image;
  113.         return $this;
  114.     }
  115.     public function getCreateAt(): ?\DateTimeInterface
  116.     {
  117.         return $this->create_at;
  118.     }
  119.     public function setCreateAt(\DateTimeInterface $create_at): self
  120.     {
  121.         $this->create_at $create_at;
  122.         return $this;
  123.     }
  124.     public function getUpdateAt(): ?\DateTimeInterface
  125.     {
  126.         return $this->update_at;
  127.     }
  128.     public function setUpdateAt(?\DateTimeInterface $update_at): self
  129.     {
  130.         $this->update_at $update_at;
  131.         return $this;
  132.     }
  133.     public function getMode(): ?string
  134.     {
  135.         return $this->mode;
  136.     }
  137.     public function setMode(string $mode): self
  138.     {
  139.         $this->mode $mode;
  140.         return $this;
  141.     }
  142.     /**
  143.      * @return Collection|Service[]
  144.      */
  145.     public function getService(): Collection
  146.     {
  147.         return $this->service;
  148.     }
  149.     public function addService(Service $service): self
  150.     {
  151.         if (!$this->service->contains($service)) {
  152.             $this->service[] = $service;
  153.         }
  154.         return $this;
  155.     }
  156.     public function removeService(Service $service): self
  157.     {
  158.         if ($this->service->contains($service)) {
  159.             $this->service->removeElement($service);
  160.         }
  161.         return $this;
  162.     }
  163.     public function getDateEnvoi(): ?\DateTimeInterface
  164.     {
  165.         return $this->date_envoi;
  166.     }
  167.     public function setDateEnvoi(?\DateTimeInterface $date_envoi): self
  168.     {
  169.         $this->date_envoi $date_envoi;
  170.         return $this;
  171.     }
  172. }