src\Entity\ProgrammeFormation.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\ProgrammeFormationRepository")
  6.  */
  7. class ProgrammeFormation
  8. {
  9.     /**
  10.      * @ORM\Id()
  11.      * @ORM\GeneratedValue()
  12.      * @ORM\Column(type="integer")
  13.      */
  14.     private $id;
  15.     /**
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $type;
  19.     /**
  20.      * @ORM\Column(type="datetime", nullable=true)
  21.      */
  22.     private $date_debut;
  23.     /**
  24.      * @ORM\Column(type="datetime", nullable=true)
  25.      */
  26.     private $date_fin;
  27.     /**
  28.      * @ORM\Column(type="boolean")
  29.      */
  30.     private $status;
  31.     /**
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     private $lieu;
  35.     const type_long=['Physique','Virtuelle'];
  36.     public function getFullType()
  37.     {
  38.         return self::type_long[$this->type];
  39.     }
  40.     /**
  41.      * @ORM\ManyToOne(targetEntity="App\Entity\Formation", inversedBy="programmes")
  42.      * @ORM\JoinColumn(nullable=false)
  43.      */
  44.     private $formation;
  45.     /**
  46.      * @ORM\Column(type="text", nullable=true)
  47.      */
  48.     private $description;
  49.     /**
  50.      * @ORM\Column(type="datetime")
  51.      */
  52.     private $created_at;
  53.     public function __construct()
  54.     {
  55.         $this->status=false;
  56.         $this->created_at=new \DateTime();
  57.     }
  58.     public function getId(): ?int
  59.     {
  60.         return $this->id;
  61.     }
  62.     public function getType(): ?int
  63.     {
  64.         return $this->type;
  65.     }
  66.     public function setType(int $type): self
  67.     {
  68.         $this->type $type;
  69.         return $this;
  70.     }
  71.     public function getDateDebut(): ?\DateTimeInterface
  72.     {
  73.         return $this->date_debut;
  74.     }
  75.     public function setDateDebut(?\DateTimeInterface $date_debut): self
  76.     {
  77.         $this->date_debut $date_debut;
  78.         return $this;
  79.     }
  80.     public function getDateFin(): ?\DateTimeInterface
  81.     {
  82.         return $this->date_fin;
  83.     }
  84.     public function setDateFin(?\DateTimeInterface $date_fin): self
  85.     {
  86.         $this->date_fin $date_fin;
  87.         return $this;
  88.     }
  89.     public function getStatus(): ?bool
  90.     {
  91.         return $this->status;
  92.     }
  93.     public function setStatus(bool $status): self
  94.     {
  95.         $this->status $status;
  96.         return $this;
  97.     }
  98.     public function getLieu(): ?string
  99.     {
  100.         return $this->lieu;
  101.     }
  102.     public function setLieu(?string $lieu): self
  103.     {
  104.         $this->lieu $lieu;
  105.         return $this;
  106.     }
  107.     public function getFormation(): ?Formation
  108.     {
  109.         return $this->formation;
  110.     }
  111.     public function setFormation(?Formation $formation): self
  112.     {
  113.         $this->formation $formation;
  114.         return $this;
  115.     }
  116.     public function getDescription(): ?string
  117.     {
  118.         return $this->description;
  119.     }
  120.     public function setDescription(?string $description): self
  121.     {
  122.         $this->description $description;
  123.         return $this;
  124.     }
  125.     public function getCreatedAt(): ?\DateTimeInterface
  126.     {
  127.         return $this->created_at;
  128.     }
  129.     public function setCreatedAt(\DateTimeInterface $created_at): self
  130.     {
  131.         $this->created_at $created_at;
  132.         return $this;
  133.     }
  134. }