src\Entity\Package.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PackageRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=PackageRepository::class)
  9.  */
  10. class Package
  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, unique=true)
  20.      */
  21.     private $code;
  22.     /**
  23.      * @ORM\Column(type="float", nullable=true)
  24.      */
  25.     private $prix;
  26.     /**
  27.      * @ORM\Column(type="integer")
  28.      */
  29.     private $type;
  30.     /**
  31.      * @ORM\Column(type="integer", nullable=true)
  32.      */
  33.     private $duree;
  34.     /**
  35.      * @ORM\Column(type="integer")
  36.      */
  37.     private $min;
  38.     /**
  39.      * @ORM\Column(type="boolean")
  40.      */
  41.     private $status;
  42.     /**
  43.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="packages")
  44.      * @ORM\JoinColumn(nullable=false)
  45.      */
  46.     private $user;
  47.     /**
  48.      * @ORM\Column(type="datetime")
  49.      */
  50.     private $created_at;
  51.     /**
  52.      * @ORM\Column(type="datetime", nullable=true)
  53.      */
  54.     private $updated_at;
  55.     /**
  56.      * @ORM\Column(type="text", nullable=true)
  57.      */
  58.     private $description;
  59.     /**
  60.      * @ORM\ManyToMany(targetEntity=ProgrammeFormation::class)
  61.      */
  62.     private $programmes;
  63.     /**
  64.      * @ORM\Column(type="string", length=255)
  65.      */
  66.     private $titre;
  67.     /**
  68.      * @ORM\OneToMany(targetEntity=Souscription::class, mappedBy="package")
  69.      */
  70.     private $souscriptions;
  71.     const TYPE_LIST_FULL = ["News","Events","Vidéo","Pack formation"],
  72.         DUREE_LIST = ['Mensuelle','Annuelle']
  73.     ;
  74.     public function __construct()
  75.     {
  76.         $this->formations = new ArrayCollection();
  77.         $this->created_at = new \DateTime();
  78.         $this->status false;
  79.         $this->programmes = new ArrayCollection();
  80.         $this->souscriptions = new ArrayCollection();
  81.     }
  82.     public function getFullType(): ?string
  83.     {
  84.         return self::TYPE_LIST_FULL[$this->type];
  85.     }
  86.     public function getFullDuree(): ?string
  87.     {
  88.         return self::DUREE_LIST[$this->duree];
  89.     }
  90.     public function getId(): ?int
  91.     {
  92.         return $this->id;
  93.     }
  94.     public function getCode(): ?string
  95.     {
  96.         return $this->code;
  97.     }
  98.     public function setCode(string $code): self
  99.     {
  100.         $this->code $code;
  101.         return $this;
  102.     }
  103.     public function getPrix(): ?float
  104.     {
  105.         return $this->prix;
  106.     }
  107.     public function setPrix(?float $prix): self
  108.     {
  109.         $this->prix $prix;
  110.         return $this;
  111.     }
  112.     public function getType(): ?int
  113.     {
  114.         return $this->type;
  115.     }
  116.     public function setType(int $type): self
  117.     {
  118.         $this->type $type;
  119.         return $this;
  120.     }
  121.     public function getDuree(): ?int
  122.     {
  123.         return $this->duree;
  124.     }
  125.     public function setDuree(?int $duree): self
  126.     {
  127.         $this->duree $duree;
  128.         return $this;
  129.     }
  130.     public function getMin(): ?int
  131.     {
  132.         return $this->min;
  133.     }
  134.     public function setMin(int $min): self
  135.     {
  136.         $this->min $min;
  137.         return $this;
  138.     }
  139.     public function getStatus(): ?bool
  140.     {
  141.         return $this->status;
  142.     }
  143.     public function setStatus(bool $status): self
  144.     {
  145.         $this->status $status;
  146.         return $this;
  147.     }
  148.     public function getUser(): ?User
  149.     {
  150.         return $this->user;
  151.     }
  152.     public function setUser(?User $user): self
  153.     {
  154.         $this->user $user;
  155.         return $this;
  156.     }
  157.     public function getCreatedAt(): ?\DateTimeInterface
  158.     {
  159.         return $this->created_at;
  160.     }
  161.     public function setCreatedAt(\DateTimeInterface $created_at): self
  162.     {
  163.         $this->created_at $created_at;
  164.         return $this;
  165.     }
  166.     public function getUpdatedAt(): ?\DateTimeInterface
  167.     {
  168.         return $this->updated_at;
  169.     }
  170.     public function setUpdatedAt(?\DateTimeInterface $updated_at): self
  171.     {
  172.         $this->updated_at $updated_at;
  173.         return $this;
  174.     }
  175.     public function getDescription(): ?string
  176.     {
  177.         return $this->description;
  178.     }
  179.     public function setDescription(?string $description): self
  180.     {
  181.         $this->description $description;
  182.         return $this;
  183.     }
  184.     /**
  185.      * @return Collection|ProgrammeFormation[]
  186.      */
  187.     public function getProgrammes(): Collection
  188.     {
  189.         return $this->programmes;
  190.     }
  191.     public function addProgramme(ProgrammeFormation $programme): self
  192.     {
  193.         if (!$this->programmes->contains($programme)) {
  194.             $this->programmes[] = $programme;
  195.         }
  196.         return $this;
  197.     }
  198.     public function removeProgramme(ProgrammeFormation $programme): self
  199.     {
  200.         if ($this->programmes->contains($programme)) {
  201.             $this->programmes->removeElement($programme);
  202.         }
  203.         return $this;
  204.     }
  205.     public function getTitre(): ?string
  206.     {
  207.         return $this->titre;
  208.     }
  209.     public function setTitre(string $titre): self
  210.     {
  211.         $this->titre $titre;
  212.         return $this;
  213.     }
  214.     /**
  215.      * @return Collection|Souscription[]
  216.      */
  217.     public function getSouscriptions(): Collection
  218.     {
  219.         return $this->souscriptions;
  220.     }
  221.     public function addSouscription(Souscription $souscription): self
  222.     {
  223.         if (!$this->souscriptions->contains($souscription)) {
  224.             $this->souscriptions[] = $souscription;
  225.             $souscription->setPackage($this);
  226.         }
  227.         return $this;
  228.     }
  229.     public function removeSouscription(Souscription $souscription): self
  230.     {
  231.         if ($this->souscriptions->removeElement($souscription)) {
  232.             // set the owning side to null (unless already changed)
  233.             if ($souscription->getPackage() === $this) {
  234.                 $souscription->setPackage(null);
  235.             }
  236.         }
  237.         return $this;
  238.     }
  239. }