<?php
namespace App\Entity;
use App\Repository\FormationsRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=FormationsRepository::class)
*/
class Formations
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $label;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $description;
/**
* @ORM\OneToOne(targetEntity=Picture::class, cascade={"persist", "remove"})
*/
private $banner;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $details;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $slug;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $isEnabled;
/**
* @ORM\OneToOne(targetEntity=Albums::class, cascade={"persist", "remove"})
*/
private $album;
/**
* @ORM\ManyToOne(targetEntity=Users::class)
*/
private $user;
/**
* @ORM\Column(type="datetime")
*/
private $createdAt;
/**
* @ORM\OneToMany(targetEntity=FormationsThematics::class, mappedBy="formation")
*/
private $thematics;
/**
* @ORM\OneToMany(targetEntity=Registrations::class, mappedBy="formation")
*/
private $registrations;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $hasRegistration;
/**
* @ORM\OneToMany(targetEntity=FormationsSessions::class, mappedBy="formation")
*/
private $sessions;
public function __construct()
{
$this->thematics = new ArrayCollection();
$this->registrations = new ArrayCollection();
$this->sessions = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getLabel(): ?string
{
return $this->label;
}
public function setLabel(?string $label): self
{
$this->label = $label;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): self
{
$this->description = $description;
return $this;
}
public function getDetails(): ?string
{
return $this->details;
}
public function setDetails(?string $details): self
{
$this->details = $details;
return $this;
}
public function getSlug(): ?string
{
return $this->slug;
}
public function setSlug(?string $slug): self
{
$this->slug = $slug;
return $this;
}
public function getIsEnabled(): ?bool
{
return $this->isEnabled;
}
public function setIsEnabled(?bool $isEnabled): self
{
$this->isEnabled = $isEnabled;
return $this;
}
public function getBanner(): ?Picture
{
return $this->banner;
}
public function setBanner(?Picture $banner): self
{
if($banner->getTarget()){
$this->banner = $banner;
$this->banner->setDir('upload/images/formations/');
$this->banner->setThumbnailDir('upload/thumbnails/formations/');
}
return $this;
}
public function getAlbum(): ?Albums
{
return $this->album;
}
public function setAlbum(?Albums $album): self
{
$this->album = $album;
return $this;
}
public function getUser(): ?Users
{
return $this->user;
}
public function setUser(?Users $user): self
{
$this->user = $user;
return $this;
}
public function getCreatedAt(): ?\DateTimeInterface
{
return $this->createdAt;
}
public function setCreatedAt(\DateTimeInterface $createdAt): self
{
$this->createdAt = $createdAt;
return $this;
}
/**
* @return Collection<int, FormationsThematics>
*/
public function getThematics(): Collection
{
return $this->thematics;
}
public function addThematic(FormationsThematics $thematic): self
{
if (!$this->thematics->contains($thematic)) {
$this->thematics[] = $thematic;
$thematic->setFormation($this);
}
return $this;
}
public function removeThematic(FormationsThematics $thematic): self
{
if ($this->thematics->removeElement($thematic)) {
// set the owning side to null (unless already changed)
if ($thematic->getFormation() === $this) {
$thematic->setFormation(null);
}
}
return $this;
}
/**
* @return Collection<int, Registrations>
*/
public function getRegistrations(): Collection
{
return $this->registrations;
}
public function addRegistration(Registrations $registration): self
{
if (!$this->registrations->contains($registration)) {
$this->registrations[] = $registration;
$registration->setFormation($this);
}
return $this;
}
public function removeRegistration(Registrations $registration): self
{
if ($this->registrations->removeElement($registration)) {
// set the owning side to null (unless already changed)
if ($registration->getFormation() === $this) {
$registration->setFormation(null);
}
}
return $this;
}
public function getHasRegistration(): ?bool
{
return $this->hasRegistration;
}
public function setHasRegistration(?bool $hasRegistration): self
{
$this->hasRegistration = $hasRegistration;
return $this;
}
/**
* @return Collection<int, FormationsSessions>
*/
public function getSessions(): Collection
{
return $this->sessions;
}
public function addSession(FormationsSessions $session): self
{
if (!$this->sessions->contains($session)) {
$this->sessions[] = $session;
$session->setFormation($this);
}
return $this;
}
public function removeSession(FormationsSessions $session): self
{
if ($this->sessions->removeElement($session)) {
// set the owning side to null (unless already changed)
if ($session->getFormation() === $this) {
$session->setFormation(null);
}
}
return $this;
}
}