src\Entity\Publicite.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. use Symfony\Component\HttpFoundation\File\File;
  6. /**
  7.  * @ORM\Entity(repositoryClass="App\Repository\PubliciteRepository")
  8.  */
  9. class Publicite
  10. {
  11.     /**
  12.      * @ORM\Id()
  13.      * @ORM\GeneratedValue()
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="string", length=255)
  19.      */
  20.     private $libelle;
  21.     /**
  22.      * @ORM\Column(type="text", nullable=true)
  23.      */
  24.     private $description;
  25.     /**
  26.      * @ORM\Column(type="date")
  27.      */
  28.     private $debut;
  29.     /**
  30.      * @ORM\Column(type="date", nullable=true)
  31.      */
  32.     private $fin;
  33.     /**
  34.      * @ORM\Column(type="string", length=255, nullable=true)
  35.      */
  36.     private $support;
  37.     /**
  38.      * @ORM\Column(type="string", length=255, nullable=true)
  39.      */
  40.     private $espace;
  41.     /**
  42.      * @ORM\Column(type="boolean")
  43.      */
  44.     private $status;
  45.     /**
  46.      * @ORM\Column(type="datetime")
  47.      */
  48.     private $create_at;
  49.     /**
  50.      * @ORM\Column(type="datetime", nullable=true)
  51.      */
  52.     private $update_at;
  53.     /**
  54.      * @ORM\ManyToOne(targetEntity="App\Entity\TypePub", inversedBy="publicite")
  55.      */
  56.     private $type;
  57.     const espaces = ['Header','Pub','body'],
  58.         espaces_long =['EntĂȘte','Pub','Corps'];
  59.     function __construct()
  60.     {
  61.         $this->status=false;
  62.         //$this->roles = ['ROLE_USER'];
  63.         $this->create_at=new \DateTime('UTC');
  64.         //$this->loginattemps = new ArrayCollection();
  65.         //$this->trackings = new ArrayCollection();
  66.     }
  67.     public function getId(): ?int
  68.     {
  69.         return $this->id;
  70.     }
  71.     public function getLibelle(): ?string
  72.     {
  73.         return $this->libelle;
  74.     }
  75.     public function setLibelle(string $libelle): self
  76.     {
  77.         $this->libelle $libelle;
  78.         return $this;
  79.     }
  80.     public function getDescription(): ?string
  81.     {
  82.         return $this->description;
  83.     }
  84.     public function setDescription(?string $description): self
  85.     {
  86.         $this->description $description;
  87.         return $this;
  88.     }
  89.     public function getDebut(): ?\DateTimeInterface
  90.     {
  91.         return $this->debut;
  92.     }
  93.     public function setDebut(\DateTimeInterface $debut): self
  94.     {
  95.         $this->debut $debut;
  96.         return $this;
  97.     }
  98.     public function getFin(): ?\DateTimeInterface
  99.     {
  100.         return $this->fin;
  101.     }
  102.     public function setFin(?\DateTimeInterface $fin): self
  103.     {
  104.         $this->fin $fin;
  105.         return $this;
  106.     }
  107.     public function getSupport()
  108.     {
  109.         return $this->support;
  110.     }
  111.     public function setSupport($support)
  112.     {
  113.         $this->support $support;
  114.         return $this;
  115.     }
  116.     public function getEspace(): ?string
  117.     {
  118.         return $this->espace;
  119.     }
  120.      public function getFullEspace(): ?string
  121.     {
  122.         return self::espaces[$this->espace];
  123.     }
  124.     public function getFullEspaceLong(): ?string
  125.     {
  126.         return self::espaces_long[$this->espace];
  127.     }
  128.     public function setEspace(?string $espace): self
  129.     {
  130.         $this->espace $espace;
  131.         return $this;
  132.     }
  133.     public function getStatus(): ?bool
  134.     {
  135.         return $this->status;
  136.     }
  137.     public function setStatus(bool $status): self
  138.     {
  139.         $this->status $status;
  140.         return $this;
  141.     }
  142.     public function getCreateAt(): ?\DateTimeInterface
  143.     {
  144.         return $this->create_at;
  145.     }
  146.     public function setCreateAt(\DateTimeInterface $create_at): self
  147.     {
  148.         $this->create_at $create_at;
  149.         return $this;
  150.     }
  151.     public function getUpdateAt(): ?\DateTimeInterface
  152.     {
  153.         return $this->update_at;
  154.     }
  155.     public function setUpdateAt(?\DateTimeInterface $update_at): self
  156.     {
  157.         $this->update_at $update_at;
  158.         return $this;
  159.     }
  160.     public function getType(): ?TypePub
  161.     {
  162.         return $this->type;
  163.     }
  164.     public function setType(?TypePub $type): self
  165.     {
  166.         $this->type $type;
  167.         return $this;
  168.     }
  169. }