src\Entity\Evenement.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\EvenementRepository")
  6.  */
  7. class Evenement
  8. {
  9.     /**
  10.      * @ORM\Id()
  11.      * @ORM\GeneratedValue()
  12.      * @ORM\Column(type="integer")
  13.      */
  14.     private $id;
  15.     /**
  16.      * @ORM\ManyToOne(targetEntity="App\Entity\Pays", inversedBy="evenements")
  17.      * @ORM\JoinColumn(nullable=false)
  18.      */
  19.     private $pays;
  20.     /**
  21.      * @ORM\ManyToOne(targetEntity="App\Entity\Categorie", inversedBy="evenements")
  22.      * @ORM\JoinColumn(nullable=false)
  23.      */
  24.     private $categorie;
  25.     /**
  26.      * @ORM\ManyToOne(targetEntity="App\Entity\User", inversedBy="evenements")
  27.      * @ORM\JoinColumn(nullable=false)
  28.      */
  29.     private $user;
  30.     /**
  31.      * @ORM\Column(type="string", length=255)
  32.      */
  33.     private $nom;
  34.     /**
  35.      * @ORM\Column(type="date", nullable=true)
  36.      */
  37.     private $date;
  38.     /**
  39.      * @ORM\Column(type="time",nullable=true)
  40.      */
  41.     private $heure;
  42.     /**
  43.      * @ORM\Column(type="string", length=255, nullable=true)
  44.      */
  45.     private $periode;
  46.     /**
  47.      * @ORM\Column(type="integer")
  48.      */
  49.     private $importance;
  50.     /**
  51.      * @ORM\Column(type="string", length=255, nullable=true)
  52.      */
  53.     private $precedente;
  54.     /**
  55.      * @ORM\Column(type="string", length=255, nullable=true)
  56.      */
  57.     private $prevision;
  58.     /**
  59.      * @ORM\Column(type="string", length=255, nullable=true)
  60.      */
  61.     private $actuelle;
  62.     /**
  63.      * @ORM\Column(type="string", length=255, nullable=true)
  64.      */
  65.     private $source;
  66.     /**
  67.      * @ORM\Column(type="string", length=255, nullable=true)
  68.      */
  69.     private $liensource;
  70.     /**
  71.      * @ORM\Column(type="text", nullable=true)
  72.      */
  73.     private $commentaire;
  74.     /**
  75.      * @ORM\Column(type="datetime")
  76.      */
  77.     private $created_at;
  78.     /**
  79.      * @ORM\Column(type="datetime", nullable=true)
  80.      */
  81.     private $updated_at;
  82.     /**
  83.      * @ORM\Column(type="boolean")
  84.      */
  85.     private $status;
  86.     /**
  87.      * @ORM\Column(type="string", length=255, nullable=true)
  88.      */
  89.     private $compaprecedent;
  90.     const importances=['Jour férié',1,2,3];
  91.     function getFullImportance(): ?string
  92.     {
  93.         return self::importances[$this->importance];
  94.     }
  95.     public function __construct()
  96.     {
  97.         $this->created_at = new \DateTime();
  98.         $this->status false;
  99.     }
  100.     public function getId(): ?int
  101.     {
  102.         return $this->id;
  103.     }
  104.     public function getPays(): ?Pays
  105.     {
  106.         return $this->pays;
  107.     }
  108.     public function setPays(?Pays $pays): self
  109.     {
  110.         $this->pays $pays;
  111.         return $this;
  112.     }
  113.     public function getCategorie(): ?Categorie
  114.     {
  115.         return $this->categorie;
  116.     }
  117.     public function setCategorie(?Categorie $categorie): self
  118.     {
  119.         $this->categorie $categorie;
  120.         return $this;
  121.     }
  122.     public function getUser(): ?User
  123.     {
  124.         return $this->user;
  125.     }
  126.     public function setUser(?User $user): self
  127.     {
  128.         $this->user $user;
  129.         return $this;
  130.     }
  131.     public function getNom(): ?string
  132.     {
  133.         return $this->nom;
  134.     }
  135.     public function setNom(string $nom): self
  136.     {
  137.         $this->nom $nom;
  138.         return $this;
  139.     }
  140.     public function getDate(): ?\DateTimeInterface
  141.     {
  142.         return $this->date;
  143.     }
  144.     public function setDate(?\DateTimeInterface $date): self
  145.     {
  146.         $this->date $date;
  147.         return $this;
  148.     }
  149.     public function getHeure(): ?\DateTimeInterface
  150.     {
  151.         return $this->heure;
  152.     }
  153.     public function setHeure(?\DateTimeInterface $heure): self
  154.     {
  155.         $this->heure $heure;
  156.         return $this;
  157.     }
  158.     public function getPeriode(): ?string
  159.     {
  160.         return $this->periode;
  161.     }
  162.     public function setPeriode(?string $periode): self
  163.     {
  164.         $this->periode $periode;
  165.         return $this;
  166.     }
  167.     public function getImportance(): ?int
  168.     {
  169.         return $this->importance;
  170.     }
  171.     public function setImportance(int $importance): self
  172.     {
  173.         $this->importance $importance;
  174.         return $this;
  175.     }
  176.     public function getPrecedente(): ?string
  177.     {
  178.         return $this->precedente;
  179.     }
  180.     public function setPrecedente(string $precedente): self
  181.     {
  182.         $this->precedente $precedente;
  183.         return $this;
  184.     }
  185.     public function getPrevision(): ?string
  186.     {
  187.         return $this->prevision;
  188.     }
  189.     public function setPrevision(?string $prevision): self
  190.     {
  191.         $this->prevision $prevision;
  192.         return $this;
  193.     }
  194.     public function getActuelle(): ?string
  195.     {
  196.         return $this->actuelle;
  197.     }
  198.     public function setActuelle(?string $actuelle): self
  199.     {
  200.         $this->actuelle $actuelle;
  201.         return $this;
  202.     }
  203.     public function getSource(): ?string
  204.     {
  205.         return $this->source;
  206.     }
  207.     public function setSource(?string $source): self
  208.     {
  209.         $this->source $source;
  210.         return $this;
  211.     }
  212.     public function getLiensource(): ?string
  213.     {
  214.         return $this->liensource;
  215.     }
  216.     public function setLiensource(?string $liensource): self
  217.     {
  218.         $this->liensource $liensource;
  219.         return $this;
  220.     }
  221.     public function getCommentaire(): ?string
  222.     {
  223.         return $this->commentaire;
  224.     }
  225.     public function setCommentaire(?string $commentaire): self
  226.     {
  227.         $this->commentaire $commentaire;
  228.         return $this;
  229.     }
  230.     public function getCreatedAt(): ?\DateTimeInterface
  231.     {
  232.         return $this->created_at;
  233.     }
  234.     public function setCreatedAt(\DateTimeInterface $created_at): self
  235.     {
  236.         $this->created_at $created_at;
  237.         return $this;
  238.     }
  239.     public function getUpdatedAt(): ?\DateTimeInterface
  240.     {
  241.         return $this->updated_at;
  242.     }
  243.     public function setUpdatedAt(?\DateTimeInterface $updated_at): self
  244.     {
  245.         $this->updated_at $updated_at;
  246.         return $this;
  247.     }
  248.     public function getStatus(): ?bool
  249.     {
  250.         return $this->status;
  251.     }
  252.     public function setStatus(bool $status): self
  253.     {
  254.         $this->status $status;
  255.         return $this;
  256.     }
  257.     public function getCompaprecedent(): ?string
  258.     {
  259.         return $this->compaprecedent;
  260.     }
  261.     public function setCompaprecedent(?string $compaprecedent): self
  262.     {
  263.         $this->compaprecedent $compaprecedent;
  264.         return $this;
  265.     }
  266. }