src/Entity/BFInscriptionUser.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. /**
  8.  * @ORM\Entity(repositoryClass="App\Repository\BFInscriptionUserRepository")
  9.  */
  10. class BFInscriptionUser extends AbstractArrayAccess
  11. {
  12.     /**
  13.      * @ORM\Id()
  14.      * @ORM\GeneratedValue()
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\OneToOne(targetEntity="App\Entity\BFUser", inversedBy="inscriptionuser", cascade={"persist"})
  20.      * @ORM\JoinColumn(onDelete="SET NULL")
  21.      */
  22.     private $user;
  23.     /**
  24.      * @ORM\Column(type="string", length=255)
  25.      */
  26.     private $name;
  27.     /**
  28.      * @ORM\Column(type="string", length=255)
  29.      */
  30.     private $forname;
  31.     /**
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     private $email;
  35.     /**
  36.      * @ORM\Column(type="string", length=255, nullable=true)
  37.      */
  38.     private $telephonenumber;
  39.     /**
  40.      * @ORM\Column(type="integer", nullable=true)
  41.      */
  42.     private $licencenumber;
  43.     /**
  44.      * @ORM\Column(type="datetime")
  45.      */
  46.     private $creationdate;
  47.     /**
  48.      * @ORM\OneToMany(targetEntity="App\Entity\BFInscription", mappedBy="inscriptionuser1", orphanRemoval=true)
  49.      * @ORM\JoinColumn(onDelete="SET NULL")
  50.      */
  51.     private $inscriptions1;
  52.     /**
  53.      * @ORM\OneToMany(targetEntity="App\Entity\BFInscription", mappedBy="inscriptionuser2")
  54.      * @ORM\JoinColumn(onDelete="SET NULL")
  55.      */
  56.     private $inscriptions2;
  57.     /**
  58.      * @ORM\OneToMany(targetEntity="App\Entity\BFInscription", mappedBy="inscriptionuser3")
  59.      * @ORM\JoinColumn(onDelete="SET NULL")
  60.      */
  61.     private $inscriptions3;
  62.     /**
  63.      * @ORM\OneToMany(targetEntity="App\Entity\BFInscription", mappedBy="inscriptionuser4")
  64.      * @ORM\JoinColumn(onDelete="SET NULL")
  65.      */
  66.     private $inscriptions4;
  67.     /**
  68.      * @ORM\OneToMany(targetEntity="App\Entity\BFInscription", mappedBy="inscriptionuser5")
  69.      * @ORM\JoinColumn(onDelete="SET NULL")
  70.      */
  71.     private $inscriptions5;
  72.     /**
  73.      * @ORM\OneToMany(targetEntity="App\Entity\BFInscription", mappedBy="inscriptionuser6")
  74.      * @ORM\JoinColumn(onDelete="SET NULL")
  75.      */
  76.     private $inscriptions6;
  77.     public function __construct()
  78.     {
  79.         $this->inscriptions1 = new ArrayCollection();
  80.         $this->inscriptions2 = new ArrayCollection();
  81.         $this->inscriptions3 = new ArrayCollection();
  82.         $this->inscriptions4 = new ArrayCollection();
  83.         $this->inscriptions5 = new ArrayCollection();
  84.         $this->inscriptions6 = new ArrayCollection();
  85.         $this->creationdate= new \DateTime();
  86.     }
  87.     
  88.     public function Copy():BFInscriptionUser
  89.     {
  90.         $copy = new BFInscriptionUser();
  91.         $copy->setUser($this->user);
  92.         $copy->setName($this->name);
  93.         $copy->setForname($this->forname);
  94.         $copy->setTelephonenumber($this->telephonenumber);
  95.         $copy->setLicencenumber($this->licencenumber);
  96.         
  97.         return $copy;
  98.     }
  99.     public function getId(): ?int
  100.     {
  101.         return $this->id;
  102.     }
  103.     public function getUser(): ?BFUser
  104.     {
  105.         return $this->user;
  106.     }
  107.     public function setUser(?BFUser $user): self
  108.     {
  109.         $this->user $user;
  110.         
  111.         if($user!=null)
  112.         {
  113.             $userdescription $user->getDescription();
  114.             if($userdescription->getName())
  115.                 $this->name $userdescription->getName();
  116.             if($userdescription->getForname())
  117.                 $this->forname$userdescription->getForname();
  118.             $this->email $user->getEmail();
  119.             $this->telephonenumber $userdescription->getPhonenumber();
  120.             $this->licencenumber=$userdescription->getLicencenumber();
  121.         }
  122.         return $this;
  123.     }
  124.     public function getName(): ?string
  125.     {
  126.         return $this->name;
  127.     }
  128.     public function setName(string $name): self
  129.     {
  130.         $this->name $name;
  131.         return $this;
  132.     }
  133.     public function getForname(): ?string
  134.     {
  135.         return $this->forname;
  136.     }
  137.     public function setForname(string $forname): self
  138.     {
  139.         $this->forname $forname;
  140.         return $this;
  141.     }
  142.     public function getEmail(): ?string
  143.     {
  144.         return $this->email;
  145.     }
  146.     public function setEmail(?string $email): self
  147.     {
  148.         $this->email $email;
  149.         return $this;
  150.     }
  151.     public function getTelephonenumber(): ?string
  152.     {
  153.         return $this->telephonenumber;
  154.     }
  155.     public function setTelephonenumber(?string $telephonenumber): self
  156.     {
  157.         $this->telephonenumber $telephonenumber;
  158.         return $this;
  159.     }
  160.     public function getLicencenumber(): ?int
  161.     {
  162.         return $this->licencenumber;
  163.     }
  164.     public function setLicencenumber(?int $licencenumber): self
  165.     {
  166.         $this->licencenumber $licencenumber;
  167.         return $this;
  168.     }
  169.     public function getCreationdate(): ?\DateTimeInterface
  170.     {
  171.         return $this->creationdate;
  172.     }
  173.     public function setCreationdate(\DateTimeInterface $creationdate): self
  174.     {
  175.         $this->creationdate $creationdate;
  176.         return $this;
  177.     }
  178.     /**
  179.      * @return Collection|BFInscription[]
  180.      */
  181.     public function getInscriptions1(): Collection
  182.     {
  183.         return $this->inscriptions1;
  184.     }
  185.     public function addInscriptions1(BFInscription $inscriptions1): self
  186.     {
  187.         if (!$this->inscriptions->contains($inscriptions1)) {
  188.             $this->inscriptions1[] = $inscriptions1;
  189.             $inscriptions1->setInscriptionuser1($this);
  190.         }
  191.         return $this;
  192.     }
  193.     public function removeInscriptions1(BFInscription $inscriptions1): self
  194.     {
  195.         if ($this->inscriptions1->contains($inscriptions1)) {
  196.             $this->inscriptions1->removeElement($inscriptions1);
  197.             // set the owning side to null (unless already changed)
  198.             if ($inscriptions1->getInscriptionuser1() === $this) {
  199.                 $inscriptions1->setInscriptionuser1(null);
  200.             }
  201.         }
  202.         return $this;
  203.     }
  204.     /**
  205.      * @return Collection|BFInscription[]
  206.      */
  207.     public function getInscriptions2(): Collection
  208.     {
  209.         return $this->inscriptions2;
  210.     }
  211.     public function addInscriptions2(BFInscription $inscriptions2): self
  212.     {
  213.         if (!$this->inscriptions2->contains($inscriptions2)) {
  214.             $this->inscriptions2[] = $inscriptions2;
  215.             $inscriptions2->setInscriptionuser2($this);
  216.         }
  217.         return $this;
  218.     }
  219.     public function removeInscriptions2(BFInscription $inscriptions2): self
  220.     {
  221.         if ($this->inscriptions2->contains($inscriptions2)) {
  222.             $this->inscriptions2->removeElement($inscriptions2);
  223.             // set the owning side to null (unless already changed)
  224.             if ($inscriptions2->getInscriptionuser2() === $this) {
  225.                 $inscriptions2->setInscriptionuser2(null);
  226.             }
  227.         }
  228.         return $this;
  229.     }
  230.     /**
  231.      * @return Collection|BFInscription[]
  232.      */
  233.     public function getInscriptions3(): Collection
  234.     {
  235.         return $this->inscriptions3;
  236.     }
  237.     public function addInscriptions3(BFInscription $inscriptions3): self
  238.     {
  239.         if (!$this->inscriptions3->contains($inscriptions3)) {
  240.             $this->inscriptions3[] = $inscriptions3;
  241.             $inscriptions3->setInscriptionuser3($this);
  242.         }
  243.         return $this;
  244.     }
  245.     public function removeInscriptions3(BFInscription $inscriptions3): self
  246.     {
  247.         if ($this->inscriptions3->contains($inscriptions3)) {
  248.             $this->inscriptions3->removeElement($inscriptions3);
  249.             // set the owning side to null (unless already changed)
  250.             if ($inscriptions3->getInscriptionuser3() === $this) {
  251.                 $inscriptions3->setInscriptionuser3(null);
  252.             }
  253.         }
  254.         return $this;
  255.     }
  256.     /**
  257.      * @return Collection|BFInscription[]
  258.      */
  259.     public function getInscriptions4(): Collection
  260.     {
  261.         return $this->inscriptions4;
  262.     }
  263.     public function addInscriptions4(BFInscription $inscriptions4): self
  264.     {
  265.         if (!$this->inscriptions4->contains($inscriptions4)) {
  266.             $this->inscriptions4[] = $inscriptions4;
  267.             $inscriptions4->setInscriptionuser4($this);
  268.         }
  269.         return $this;
  270.     }
  271.     public function removeInscriptions4(BFInscription $inscriptions4): self
  272.     {
  273.         if ($this->inscriptions4->contains($inscriptions4)) {
  274.             $this->inscriptions4->removeElement($inscriptions4);
  275.             // set the owning side to null (unless already changed)
  276.             if ($inscriptions4->getInscriptionuser4() === $this) {
  277.                 $inscriptions4->setInscriptionuser4(null);
  278.             }
  279.         }
  280.         return $this;
  281.     }
  282.     /**
  283.      * @return Collection|BFInscription[]
  284.      */
  285.     public function getInscriptions5(): Collection
  286.     {
  287.         return $this->inscriptions5;
  288.     }
  289.     public function addInscriptions5(BFInscription $inscriptions5): self
  290.     {
  291.         if (!$this->inscriptions5->contains($inscriptions5)) {
  292.             $this->inscriptions5[] = $inscriptions5;
  293.             $inscriptions5->setInscriptionuser5($this);
  294.         }
  295.         return $this;
  296.     }
  297.     public function removeInscriptions5(BFInscription $inscriptions5): self
  298.     {
  299.         if ($this->inscriptions5->contains($inscriptions5)) {
  300.             $this->inscriptions5->removeElement($inscriptions5);
  301.             // set the owning side to null (unless already changed)
  302.             if ($inscriptions5->getInscriptionuser5() === $this) {
  303.                 $inscriptions5->setInscriptionuser5(null);
  304.             }
  305.         }
  306.         return $this;
  307.     }
  308.     /**
  309.      * @return Collection|BFInscription[]
  310.      */
  311.     public function getInscriptions6(): Collection
  312.     {
  313.         return $this->inscriptions6;
  314.     }
  315.     public function addInscriptions6(BFInscription $inscriptions6): self
  316.     {
  317.         if (!$this->inscriptions6->contains($inscriptions6)) {
  318.             $this->inscriptions6[] = $inscriptions6;
  319.             $inscriptions6->setInscriptionuser6($this);
  320.         }
  321.         return $this;
  322.     }
  323.     public function removeInscriptions6(BFInscription $inscriptions6): self
  324.     {
  325.         if ($this->inscriptions6->contains($inscriptions6)) {
  326.             $this->inscriptions6->removeElement($inscriptions6);
  327.             // set the owning side to null (unless already changed)
  328.             if ($inscriptions6->getInscriptionuser6() === $this) {
  329.                 $inscriptions6->setInscriptionuser6(null);
  330.             }
  331.         }
  332.         return $this;
  333.     }
  334.     
  335.     public function getAllInscriptions()
  336.     {        
  337.         $inscriptionscollections = new ArrayCollection();
  338.         
  339.         if($this->inscriptions1!=null)
  340.             $inscriptionscollections->add($this->inscriptions1);
  341.         if($this->inscriptions2!=null)
  342.             $inscriptionscollections->add($this->inscriptions2);
  343.         if($this->inscriptions3!=null)
  344.             $inscriptionscollections->add($this->inscriptions3);
  345.         if($this->inscriptions4!=null)
  346.             $inscriptionscollections->add($this->inscriptions4);
  347.         if($this->inscriptions5!=null)
  348.             $inscriptionscollections->add($this->inscriptions5);
  349.         if($this->inscriptions6!=null)
  350.             $inscriptionscollections->add($this->inscriptions6);
  351.         
  352.         $inscriptions = new ArrayCollection();
  353.         foreach($inscriptionscollections as $inscriptioncollection)
  354.         {
  355.             foreach($inscriptioncollection as $inscription)
  356.             {
  357.                 $inscriptions->add($inscription);
  358.             }
  359.         }
  360.         
  361.         return $inscriptions;
  362.     }
  363.     
  364.     public function UpdateDate()
  365.     {
  366.         if($this->creationdate==null)
  367.             $this->creationdate = new \DateTime();
  368.         
  369.     }
  370.     
  371.     public function IsValid()
  372.     {
  373.         return $this->name!=null && $this->forname!=null;
  374.     }
  375.     
  376.     //for twig
  377.     public function getIsValid()
  378.     {
  379.         return $this->IsValid();
  380.     }
  381. }