src\Entity\ChapitreFormation.php line 12

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. /**
  7.  * @ORM\Entity(repositoryClass="App\Repository\ChapitreFormationRepository")
  8.  */
  9. class ChapitreFormation
  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 $titre;
  21.     /**
  22.      * @ORM\Column(type="text", nullable=true)
  23.      */
  24.     private $contenu;
  25.     /**
  26.      * @ORM\ManyToOne(targetEntity="App\Entity\User", inversedBy="chapitresFormation")
  27.      */
  28.     private $user;
  29.     /**
  30.      * @ORM\ManyToOne(targetEntity="App\Entity\Formation", inversedBy="chapitres")
  31.      * @ORM\JoinColumn(nullable=false)
  32.      */
  33.     private $formation;
  34.     /**
  35.      * @ORM\Column(type="datetime")
  36.      */
  37.     private $created_at;
  38.     /**
  39.      * @ORM\Column(type="datetime", nullable=true)
  40.      */
  41.     private $updated_at;
  42.     /**
  43.      * @ORM\Column(type="boolean")
  44.      */
  45.     private $status;
  46.     /**
  47.      * @ORM\OneToMany(targetEntity="App\Entity\FichierFormation", mappedBy="chapitre", orphanRemoval=true)
  48.      */
  49.     private $fichiers;
  50.     /**
  51.      * @ORM\Column(type="string", length=255, nullable=true)
  52.      */
  53.     private $duree;
  54.     public function __construct()
  55.     {
  56.         $this->created_at=new \DateTime();
  57.         $this->status=false;
  58.         $this->fichiers = new ArrayCollection();
  59.     }
  60.     public function getId(): ?int
  61.     {
  62.         return $this->id;
  63.     }
  64.     public function getTitre(): ?string
  65.     {
  66.         return $this->titre;
  67.     }
  68.     public function setTitre(string $titre): self
  69.     {
  70.         $this->titre $titre;
  71.         return $this;
  72.     }
  73.     public function getContenu(): ?string
  74.     {
  75.         return $this->contenu;
  76.     }
  77.     public function setContenu(?string $contenu): self
  78.     {
  79.         $this->contenu $contenu;
  80.         return $this;
  81.     }
  82.     public function getUser(): ?User
  83.     {
  84.         return $this->user;
  85.     }
  86.     public function setUser(?User $user): self
  87.     {
  88.         $this->user $user;
  89.         return $this;
  90.     }
  91.     public function getFormation(): ?Formation
  92.     {
  93.         return $this->formation;
  94.     }
  95.     public function setFormation(?Formation $formation): self
  96.     {
  97.         $this->formation $formation;
  98.         return $this;
  99.     }
  100.     public function getCreatedAt(): ?\DateTimeInterface
  101.     {
  102.         return $this->created_at;
  103.     }
  104.     public function setCreatedAt(\DateTimeInterface $created_at): self
  105.     {
  106.         $this->created_at $created_at;
  107.         return $this;
  108.     }
  109.     public function getUpdatedAt(): ?\DateTimeInterface
  110.     {
  111.         return $this->updated_at;
  112.     }
  113.     public function setUpdatedAt(?\DateTimeInterface $updated_at): self
  114.     {
  115.         $this->updated_at $updated_at;
  116.         return $this;
  117.     }
  118.     public function getStatus(): ?bool
  119.     {
  120.         return $this->status;
  121.     }
  122.     public function setStatus(bool $status): self
  123.     {
  124.         $this->status $status;
  125.         return $this;
  126.     }
  127.     /**
  128.      * @return Collection|FichierFormation[]
  129.      */
  130.     public function getFichiers(): Collection
  131.     {
  132.         return $this->fichiers;
  133.     }
  134.     public function addFichier(FichierFormation $fichier): self
  135.     {
  136.         if (!$this->fichiers->contains($fichier)) {
  137.             $this->fichiers[] = $fichier;
  138.             $fichier->setChapitre($this);
  139.         }
  140.         return $this;
  141.     }
  142.     public function removeFichier(FichierFormation $fichier): self
  143.     {
  144.         if ($this->fichiers->contains($fichier)) {
  145.             $this->fichiers->removeElement($fichier);
  146.             // set the owning side to null (unless already changed)
  147.             if ($fichier->getChapitre() === $this) {
  148.                 $fichier->setChapitre(null);
  149.             }
  150.         }
  151.         return $this;
  152.     }
  153.     public function getDuree(): ?string
  154.     {
  155.         return $this->duree;
  156.     }
  157.     public function setDuree(?string $duree): self
  158.     {
  159.         $this->duree $duree;
  160.         return $this;
  161.     }
  162. }