src/Entity/Cursus.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CursusRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. #[ORM\Entity(repositoryClassCursusRepository::class)]
  9. class Cursus
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column(type'integer')]
  14.     private $id;
  15.     /**
  16.      * @Gedmo\Translatable
  17.      */
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private ?string $name null;
  20.     #[ORM\ManyToMany(targetEntityProgram::class, mappedBy'cursus')]
  21.     private Collection $programs;
  22.     /**
  23.      * @Gedmo\Translatable
  24.      */
  25.     #[ORM\Column(type'text'nullabletrue)]
  26.     private ?string $description null;
  27.     /**
  28.      * @Gedmo\Translatable
  29.      */
  30.     #[ORM\Column(type'text'nullabletrue)]
  31.     private ?string $cours null;
  32.     #[ORM\OneToOne(targetEntityMedia::class, cascade: ['persist''remove'])]
  33.     private ?\App\Entity\Media $media null;
  34.     public function __construct()
  35.     {
  36.         $this->programs = new ArrayCollection();
  37.     }
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getName(): ?string
  43.     {
  44.         return $this->name;
  45.     }
  46.     public function setName(?string $name): self
  47.     {
  48.         $this->name $name;
  49.         return $this;
  50.     }
  51.     /**
  52.      * @return Collection<int, Program>
  53.      */
  54.     public function getPrograms(): Collection
  55.     {
  56.         return $this->programs;
  57.     }
  58.     public function addProgram(Program $program): self
  59.     {
  60.         if (!$this->programs->contains($program)) {
  61.             $this->programs[] = $program;
  62.             $program->addCursu($this);
  63.         }
  64.         return $this;
  65.     }
  66.     public function removeProgram(Program $program): self
  67.     {
  68.         if ($this->programs->removeElement($program)) {
  69.             $program->removeCursu($this);
  70.         }
  71.         return $this;
  72.     }
  73.     public function getDescription(): ?string
  74.     {
  75.         return $this->description;
  76.     }
  77.     public function setDescription(?string $description): self
  78.     {
  79.         $this->description $description;
  80.         return $this;
  81.     }
  82.     public function getCours(): ?string
  83.     {
  84.         return $this->cours;
  85.     }
  86.     public function setCours(?string $cours): self
  87.     {
  88.         $this->cours $cours;
  89.         return $this;
  90.     }
  91.     public function getMedia(): ?Media
  92.     {
  93.         return $this->media;
  94.     }
  95.     public function setMedia(?Media $media): self
  96.     {
  97.         $this->media $media;
  98.         return $this;
  99.     }
  100. }