src/Entity/Parcours.php line 15

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ParcoursRepository;
  4. use DateTime;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\DBAL\Types\Types;
  8. use Doctrine\ORM\Mapping as ORM;
  9. use Gedmo\Timestampable\Traits\TimestampableEntity;
  10. #[ORM\Entity(repositoryClassParcoursRepository::class)]
  11. #[ORM\HasLifecycleCallbacks]
  12. class Parcours
  13. {
  14.     const IMAGE_PATH 'uploads/images/parcours/';
  15.     use TimestampableEntity;
  16.     #[ORM\Id]
  17.     #[ORM\GeneratedValue]
  18.     #[ORM\Column]
  19.     private ?int $id null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $entreprise null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $poste null;
  24.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  25.     private ?string $description null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $lien null;
  28.     #[ORM\Column(length255)]
  29.     private ?string $image null;
  30.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  31.     private ?\DateTime $date_debut null;
  32.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  33.     private ?\DateTime $date_fin null;
  34.     #[ORM\ManyToMany(targetEntitySkill::class)]
  35.     private Collection $skills;
  36.     #[ORM\Column]
  37.     private ?bool $current null;
  38.     public function __construct()
  39.     {
  40.         $this->skills = new ArrayCollection();
  41.     }
  42.     public function getId(): ?int
  43.     {
  44.         return $this->id;
  45.     }
  46.     public function getEntreprise(): ?string
  47.     {
  48.         return $this->entreprise;
  49.     }
  50.     public function setEntreprise(?string $entreprise): self
  51.     {
  52.         $this->entreprise $entreprise;
  53.         return $this;
  54.     }
  55.     public function getPoste(): ?string
  56.     {
  57.         return $this->poste;
  58.     }
  59.     public function setPoste(?string $poste): self
  60.     {
  61.         $this->poste $poste;
  62.         return $this;
  63.     }
  64.     public function getDescription(): ?string
  65.     {
  66.         return $this->description;
  67.     }
  68.     public function setDescription(?string $description): self
  69.     {
  70.         $this->description $description;
  71.         return $this;
  72.     }
  73.     public function getLien(): ?string
  74.     {
  75.         return $this->lien;
  76.     }
  77.     public function setLien(?string $lien): self
  78.     {
  79.         $this->lien $lien;
  80.         return $this;
  81.     }
  82.     public function getImage(): ?string
  83.     {
  84.         return $this->image;
  85.     }
  86.     public function setImage(string $image): self
  87.     {
  88.         $this->image $image;
  89.         return $this;
  90.     }
  91.     public function getDateDebut(): ?DateTime
  92.     {
  93.         return $this->date_debut;
  94.     }
  95.     public function setDateDebut(?DateTime $date_debut): self
  96.     {
  97.         $this->date_debut $date_debut;
  98.         return $this;
  99.     }
  100.     public function getDateFin(): ?\DateTime
  101.     {
  102.         return $this->date_fin;
  103.     }
  104.     public function setDateFin(?\DateTime $date_fin): self
  105.     {
  106.         $this->date_fin $date_fin;
  107.         return $this;
  108.     }
  109.     /**
  110.      * @return Collection<int, Skill>
  111.      */
  112.     public function getSkills(): Collection
  113.     {
  114.         return $this->skills;
  115.     }
  116.     public function addSkill(Skill $skill): self
  117.     {
  118.         if (!$this->skills->contains($skill)) {
  119.             $this->skills->add($skill);
  120.         }
  121.         return $this;
  122.     }
  123.     public function removeSkill(Skill $skill): self
  124.     {
  125.         $this->skills->removeElement($skill);
  126.         return $this;
  127.     }
  128.     public function isCurrent(): ?bool
  129.     {
  130.         return $this->current;
  131.     }
  132.     public function setCurrent(bool $current): self
  133.     {
  134.         $this->current $current;
  135.         return $this;
  136.     }
  137.     public function getAssetImage(): ?string
  138.     {
  139.         return self::IMAGE_PATH.$this->image;
  140.     }
  141. }