src/Entity/Formations.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FormationsRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=FormationsRepository::class)
  9.  */
  10. class Formations
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255, nullable=true)
  20.      */
  21.     private $label;
  22.     /**
  23.      * @ORM\Column(type="text", nullable=true)
  24.      */
  25.     private $description;
  26.     /**
  27.      * @ORM\OneToOne(targetEntity=Picture::class, cascade={"persist", "remove"})
  28.      */
  29.     private $banner;
  30.     /**
  31.      * @ORM\Column(type="text", nullable=true)
  32.      */
  33.     private $details;
  34.     /**
  35.      * @ORM\Column(type="string", length=255, nullable=true)
  36.      */
  37.     private $slug;
  38.     /**
  39.      * @ORM\Column(type="boolean", nullable=true)
  40.      */
  41.     private $isEnabled;
  42.     /**
  43.      * @ORM\OneToOne(targetEntity=Albums::class, cascade={"persist", "remove"})
  44.      */
  45.     private $album;
  46.     /**
  47.      * @ORM\ManyToOne(targetEntity=Users::class)
  48.      */
  49.     private $user;
  50.     /**
  51.      * @ORM\Column(type="datetime")
  52.      */
  53.     private $createdAt;
  54.     /**
  55.      * @ORM\OneToMany(targetEntity=FormationsThematics::class, mappedBy="formation")
  56.      */
  57.     private $thematics;
  58.     /**
  59.      * @ORM\OneToMany(targetEntity=Registrations::class, mappedBy="formation")
  60.      */
  61.     private $registrations;
  62.     /**
  63.      * @ORM\Column(type="boolean", nullable=true)
  64.      */
  65.     private $hasRegistration;
  66.     /**
  67.      * @ORM\OneToMany(targetEntity=FormationsSessions::class, mappedBy="formation")
  68.      */
  69.     private $sessions;
  70.     public function __construct()
  71.     {
  72.         $this->thematics = new ArrayCollection();
  73.         $this->registrations = new ArrayCollection();
  74.         $this->sessions = new ArrayCollection();
  75.     }
  76.     public function getId(): ?int
  77.     {
  78.         return $this->id;
  79.     }
  80.     public function getLabel(): ?string
  81.     {
  82.         return $this->label;
  83.     }
  84.     public function setLabel(?string $label): self
  85.     {
  86.         $this->label $label;
  87.         return $this;
  88.     }
  89.     public function getDescription(): ?string
  90.     {
  91.         return $this->description;
  92.     }
  93.     public function setDescription(?string $description): self
  94.     {
  95.         $this->description $description;
  96.         return $this;
  97.     }
  98.     public function getDetails(): ?string
  99.     {
  100.         return $this->details;
  101.     }
  102.     public function setDetails(?string $details): self
  103.     {
  104.         $this->details $details;
  105.         return $this;
  106.     }
  107.     public function getSlug(): ?string
  108.     {
  109.         return $this->slug;
  110.     }
  111.     public function setSlug(?string $slug): self
  112.     {
  113.         $this->slug $slug;
  114.         return $this;
  115.     }
  116.     public function getIsEnabled(): ?bool
  117.     {
  118.         return $this->isEnabled;
  119.     }
  120.     public function setIsEnabled(?bool $isEnabled): self
  121.     {
  122.         $this->isEnabled $isEnabled;
  123.         return $this;
  124.     }
  125.     public function getBanner(): ?Picture
  126.     {
  127.         return $this->banner;
  128.     }
  129.     public function setBanner(?Picture $banner): self
  130.     {
  131.         if($banner->getTarget()){
  132.             $this->banner $banner;
  133.             $this->banner->setDir('upload/images/formations/');
  134.             $this->banner->setThumbnailDir('upload/thumbnails/formations/');
  135.         }
  136.         return $this;
  137.     }
  138.     public function getAlbum(): ?Albums
  139.     {
  140.         return $this->album;
  141.     }
  142.     public function setAlbum(?Albums $album): self
  143.     {
  144.         $this->album $album;
  145.         return $this;
  146.     }
  147.     public function getUser(): ?Users
  148.     {
  149.         return $this->user;
  150.     }
  151.     public function setUser(?Users $user): self
  152.     {
  153.         $this->user $user;
  154.         return $this;
  155.     }
  156.     public function getCreatedAt(): ?\DateTimeInterface
  157.     {
  158.         return $this->createdAt;
  159.     }
  160.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  161.     {
  162.         $this->createdAt $createdAt;
  163.         return $this;
  164.     }
  165.     /**
  166.      * @return Collection<int, FormationsThematics>
  167.      */
  168.     public function getThematics(): Collection
  169.     {
  170.         return $this->thematics;
  171.     }
  172.     public function addThematic(FormationsThematics $thematic): self
  173.     {
  174.         if (!$this->thematics->contains($thematic)) {
  175.             $this->thematics[] = $thematic;
  176.             $thematic->setFormation($this);
  177.         }
  178.         return $this;
  179.     }
  180.     public function removeThematic(FormationsThematics $thematic): self
  181.     {
  182.         if ($this->thematics->removeElement($thematic)) {
  183.             // set the owning side to null (unless already changed)
  184.             if ($thematic->getFormation() === $this) {
  185.                 $thematic->setFormation(null);
  186.             }
  187.         }
  188.         return $this;
  189.     }
  190.     /**
  191.      * @return Collection<int, Registrations>
  192.      */
  193.     public function getRegistrations(): Collection
  194.     {
  195.         return $this->registrations;
  196.     }
  197.     public function addRegistration(Registrations $registration): self
  198.     {
  199.         if (!$this->registrations->contains($registration)) {
  200.             $this->registrations[] = $registration;
  201.             $registration->setFormation($this);
  202.         }
  203.         return $this;
  204.     }
  205.     public function removeRegistration(Registrations $registration): self
  206.     {
  207.         if ($this->registrations->removeElement($registration)) {
  208.             // set the owning side to null (unless already changed)
  209.             if ($registration->getFormation() === $this) {
  210.                 $registration->setFormation(null);
  211.             }
  212.         }
  213.         return $this;
  214.     }
  215.     public function getHasRegistration(): ?bool
  216.     {
  217.         return $this->hasRegistration;
  218.     }
  219.     public function setHasRegistration(?bool $hasRegistration): self
  220.     {
  221.         $this->hasRegistration $hasRegistration;
  222.         return $this;
  223.     }
  224.     /**
  225.      * @return Collection<int, FormationsSessions>
  226.      */
  227.     public function getSessions(): Collection
  228.     {
  229.         return $this->sessions;
  230.     }
  231.     public function addSession(FormationsSessions $session): self
  232.     {
  233.         if (!$this->sessions->contains($session)) {
  234.             $this->sessions[] = $session;
  235.             $session->setFormation($this);
  236.         }
  237.         return $this;
  238.     }
  239.     public function removeSession(FormationsSessions $session): self
  240.     {
  241.         if ($this->sessions->removeElement($session)) {
  242.             // set the owning side to null (unless already changed)
  243.             if ($session->getFormation() === $this) {
  244.                 $session->setFormation(null);
  245.             }
  246.         }
  247.         return $this;
  248.     }
  249. }