src/Entity/Program.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProgramRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use App\Traits\EntityDateTimeAbleTrait;
  7. use App\Traits\SeoTrait;
  8. use Doctrine\ORM\Mapping as ORM;
  9. use Gedmo\Mapping\Annotation as Gedmo;
  10. #[ORM\Entity(repositoryClassProgramRepository::class)]
  11. #[ORM\HasLifecycleCallbacks]
  12. class Program
  13. {
  14.     use EntityDateTimeAbleTrait;
  15.     use SeoTrait;
  16.     const LEVEL_BTS 1;
  17.     const LEVEL_BACHELOR 2;
  18.     const LEVEL_MBA 3;
  19.     const TRANNING_BTS = [
  20.         "module1" => "BTS 1ère année",
  21.         "module2" => "BTS 2ème année"
  22.     ];
  23.     const TRANNING_BACHELOR = [
  24.         "module1" => "Bachelor - 1ère année",
  25.         "module2" => "Bachelor - 2ème année",
  26.         "module3" => "Bachelor - 3ème année"
  27.     ];
  28.     const TRANNING_MBA = [
  29.         "module1" => "MBA/Msc 1 - BAC +4",
  30.         "module2" => "MBA/Msc 2 - BAC +5"
  31.     ];
  32.     const STATUS_ACTIVE  1;
  33.     const STATUS_INACTIVE 0;
  34.     const STATUS_IN_BO 2;
  35.     #[ORM\Id]
  36.     #[ORM\GeneratedValue]
  37.     #[ORM\Column(type'integer')]
  38.     private $id;
  39.     /**
  40.      * @Gedmo\Translatable
  41.      */
  42.     #[ORM\Column(type'string'length255nullabletrue)]
  43.     private ?string $name null;
  44.     #[ORM\Column(type'string'length255nullabletrue)]
  45.     private $slug;
  46.     #[ORM\Column(type'integer'nullabletrue)]
  47.     private ?int $status null;
  48.     #[ORM\ManyToMany(targetEntityProfile::class, mappedBy'programs')]
  49.     private Collection $profiles;
  50.     #[ORM\ManyToMany(targetEntityAppointmentPerson::class, mappedBy'programs')]
  51.     private Collection $appointmentPerson;
  52.     #[ORM\OneToMany(targetEntityProfile::class, mappedBy'selectedProgram'orphanRemovaltrue)]
  53.     private Collection $selectedProfiles;
  54.     #[ORM\ManyToMany(targetEntityQcm::class, inversedBy'programs')]
  55.     private Collection $qcm;
  56.     #[ORM\Column(type'integer'nullabletrue)]
  57.     private ?int $level null;
  58.     #[ORM\Column(type'string'length255nullabletrue)]
  59.     private ?string $pace null;
  60.     #[ORM\Column(type'string'length255nullabletrue)]
  61.     private ?string $rncp null;
  62.     /**
  63.      * @Gedmo\Translatable
  64.      */
  65.     #[ORM\Column(type'json'nullabletrue)]
  66.     private ?array $metadata = [];
  67.     #[ORM\ManyToMany(targetEntityCampus::class, inversedBy'programs')]
  68.     private Collection $campuses;
  69.     #[ORM\ManyToMany(targetEntityCursus::class, inversedBy'programs')]
  70.     private Collection $cursus;
  71.     #[ORM\OneToOne(targetEntityMedia::class, orphanRemovaltrue)]
  72.     private ?\App\Entity\Media $brochure null;
  73.     /**
  74.      * @Gedmo\Translatable
  75.      */
  76.     #[ORM\Column(type'text'nullabletrue)]
  77.     private ?string $description null;
  78.     #[ORM\OneToOne(targetEntityMedia::class, orphanRemovaltrue)]
  79.     private ?\App\Entity\Media $media null;
  80.     #[ORM\Column(type'json'nullabletrue)]
  81.     private ?array $entreprise = [];
  82.     #[ORM\Column(type'integer'nullabletrue)]
  83.     private ?int $specialityId null;
  84.     #[ORM\Column(type'integer'nullabletrue)]
  85.     private ?int $ordering null;
  86.     #[ORM\Column(type'boolean'nullabletrue)]
  87.     private ?bool $isRegister null;
  88.     #[ORM\Column(type'boolean'nullabletrue)]
  89.     private ?bool $isInitial null;
  90.     #[ORM\Column(type'boolean'nullabletrue)]
  91.     private ?bool $isAlternance null;
  92.     #[ORM\Column(type'integer'nullabletrue)]
  93.     private ?int $year null;
  94.     public function __construct()
  95.     {
  96.         $this->profiles = new ArrayCollection();
  97.         $this->appointmentPerson = new ArrayCollection();
  98.         $this->selectedProfiles = new ArrayCollection();
  99.         $this->qcm = new ArrayCollection();
  100.         $this->campuses = new ArrayCollection();
  101.         $this->cursus = new ArrayCollection();
  102.     }
  103.     public function getId(): ?int
  104.     {
  105.         return $this->id;
  106.     }
  107.     public function getName(): ?string
  108.     {
  109.         return $this->name;
  110.     }
  111.     public function setName(?string $name): self
  112.     {
  113.         $this->name $name;
  114.         return $this;
  115.     }
  116.     public function getSlug(): ?string
  117.     {
  118.         return $this->slug;
  119.     }
  120.     public function setSlug(?string $slug): self
  121.     {
  122.         $this->slug $slug;
  123.         return $this;
  124.     }
  125.     public function getStatus(): ?int
  126.     {
  127.         return $this->status;
  128.     }
  129.     public function setStatus(?int $status): self
  130.     {
  131.         $this->status $status;
  132.         return $this;
  133.     }
  134.     /**
  135.      * @return Collection<int, Profile>
  136.      */
  137.     public function getProfiles(): Collection
  138.     {
  139.         return $this->profiles;
  140.     }
  141.     public function addProfile(Profile $profile): self
  142.     {
  143.         if (!$this->profiles->contains($profile)) {
  144.             $this->profiles[] = $profile;
  145.             $profile->addProgram($this);
  146.         }
  147.         return $this;
  148.     }
  149.     public function removeProfile(Profile $profile): self
  150.     {
  151.         if ($this->profiles->removeElement($profile)) {
  152.             $profile->removeProgram($this);
  153.         }
  154.         return $this;
  155.     }
  156.     /**
  157.      * @return Collection<int, AppointmentPerson>
  158.      */
  159.     public function getAppointmentPerson(): Collection
  160.     {
  161.         return $this->appointmentPerson;
  162.     }
  163.     public function addAppointmentPerson(AppointmentPerson $appointmentPerson): self
  164.     {
  165.         if (!$this->appointmentPerson->contains($appointmentPerson)) {
  166.             $this->appointmentPerson[] = $appointmentPerson;
  167.             $appointmentPerson->addProgram($this);
  168.         }
  169.         return $this;
  170.     }
  171.     public function removeAppointmentPerson(AppointmentPerson $appointmentPerson): self
  172.     {
  173.         if ($this->appointmentPerson->removeElement($appointmentPerson)) {
  174.             $appointmentPerson->removeProgram($this);
  175.         }
  176.         return $this;
  177.     }
  178.     /**
  179.      * @return Collection<int, Profile>
  180.      */
  181.     public function getSelectedProfiles(): Collection
  182.     {
  183.         return $this->selectedProfiles;
  184.     }
  185.     public function addSelectedProfile(Profile $selectedProfile): self
  186.     {
  187.         if (!$this->selectedProfiles->contains($selectedProfile)) {
  188.             $this->selectedProfiles[] = $selectedProfile;
  189.             $selectedProfile->setSelectedProgram($this);
  190.         }
  191.         return $this;
  192.     }
  193.     public function removeSelectedProfile(Profile $selectedProfile): self
  194.     {
  195.         if ($this->selectedProfiles->removeElement($selectedProfile)) {
  196.             // set the owning side to null (unless already changed)
  197.             if ($selectedProfile->getSelectedProgram() === $this) {
  198.                 $selectedProfile->setSelectedProgram(null);
  199.             }
  200.         }
  201.         return $this;
  202.     }
  203.     /**
  204.      * @return Collection<int, Qcm>
  205.      */
  206.     public function getQcm(): Collection
  207.     {
  208.         return $this->qcm;
  209.     }
  210.     public function addQcm(Qcm $qcm): self
  211.     {
  212.         if (!$this->qcm->contains($qcm)) {
  213.             $this->qcm[] = $qcm;
  214.         }
  215.         return $this;
  216.     }
  217.     public function removeQcm(Qcm $qcm): self
  218.     {
  219.         $this->qcm->removeElement($qcm);
  220.         return $this;
  221.     }
  222.     public function getLevel(): ?int
  223.     {
  224.         return $this->level;
  225.     }
  226.     public function setLevel(?int $level): self
  227.     {
  228.         $this->level $level;
  229.         return $this;
  230.     }
  231.     public function getPace(): ?string
  232.     {
  233.         return $this->pace;
  234.     }
  235.     public function setPace(?string $pace): self
  236.     {
  237.         $this->pace $pace;
  238.         return $this;
  239.     }
  240.     public function getRncp(): ?string
  241.     {
  242.         return $this->rncp;
  243.     }
  244.     public function setRncp(?string $rncp): self
  245.     {
  246.         $this->rncp $rncp;
  247.         return $this;
  248.     }
  249.     public function getMetadata(): ?array
  250.     {
  251.         return $this->metadata;
  252.     }
  253.     public function setMetadata(?array $metadata): self
  254.     {
  255.         $this->metadata $metadata;
  256.         return $this;
  257.     }
  258.     /**
  259.      * @return Collection|Campus[]
  260.      */
  261.     public function getCampuses(): Collection
  262.     {
  263.         return $this->campuses;
  264.     }
  265.     public function addCampus(Campus $campus): self
  266.     {
  267.         if (!$this->campuses->contains($campus)) {
  268.             $this->campuses[] = $campus;
  269.         }
  270.         return $this;
  271.     }
  272.     public function removeCampus(Campus $campus): self
  273.     {
  274.         $this->campuses->removeElement($campus);
  275.         return $this;
  276.     }
  277.     /**
  278.      * @return Collection<int, Cursus>
  279.      */
  280.     public function getCursus(): Collection
  281.     {
  282.         return $this->cursus;
  283.     }
  284.     public function addCursu(Cursus $cursu): self
  285.     {
  286.         if (!$this->cursus->contains($cursu)) {
  287.             $this->cursus[] = $cursu;
  288.         }
  289.         return $this;
  290.     }
  291.     public function removeCursu(Cursus $cursu): self
  292.     {
  293.         $this->cursus->removeElement($cursu);
  294.         return $this;
  295.     }
  296.     public function getBrochure(): ?Media
  297.     {
  298.         return $this->brochure;
  299.     }
  300.     public function setBrochure(?Media $brochure): self
  301.     {
  302.         $this->brochure $brochure;
  303.         return $this;
  304.     }
  305.     public function getDescription(): ?string
  306.     {
  307.         return $this->description;
  308.     }
  309.     public function setDescription(?string $description): self
  310.     {
  311.         $this->description $description;
  312.         return $this;
  313.     }
  314.     public function getMedia(): ?Media
  315.     {
  316.         return $this->media;
  317.     }
  318.     public function setMedia(?Media $media): self
  319.     {
  320.         $this->media $media;
  321.         return $this;
  322.     }
  323.     public function getEntreprise(): ?array
  324.     {
  325.         return $this->entreprise;
  326.     }
  327.     public function setEntreprise(?array $entreprise): self
  328.     {
  329.         $this->entreprise $entreprise;
  330.         return $this;
  331.     }
  332.     public function getSpecialityId(): ?int
  333.     {
  334.         return $this->specialityId;
  335.     }
  336.     public function setSpecialityId(?int $specialityId): self
  337.     {
  338.         $this->specialityId $specialityId;
  339.         return $this;
  340.     }
  341.     public function getOrdering(): ?int
  342.     {
  343.         return $this->ordering;
  344.     }
  345.     public function setOrdering(?int $ordering): self
  346.     {
  347.         $this->ordering $ordering;
  348.         return $this;
  349.     }
  350.     public function getIsRegister(): ?bool
  351.     {
  352.         return $this->isRegister;
  353.     }
  354.     public function setIsRegister(?bool $isRegister): self
  355.     {
  356.         $this->isRegister $isRegister;
  357.         return $this;
  358.     }
  359.     public function getIsInitial(): ?bool
  360.     {
  361.         return $this->isInitial;
  362.     }
  363.     public function setIsInitial(?bool $isInitial): self
  364.     {
  365.         $this->isInitial $isInitial;
  366.         return $this;
  367.     }
  368.     public function getIsAlternance(): ?bool
  369.     {
  370.         return $this->isAlternance;
  371.     }
  372.     public function setIsAlternance(?bool $isAlternance): self
  373.     {
  374.         $this->isAlternance $isAlternance;
  375.         return $this;
  376.     }
  377.     public function getYear(): ?int
  378.     {
  379.         return $this->year;
  380.     }
  381.     public function setYear(?int $year): self
  382.     {
  383.         $this->year $year;
  384.         return $this;
  385.     }
  386. }