dateSubmited; } /** * @param \DateTime $dateSubmited */ public function setDateSubmited(\DateTime $dateSubmited) { $this->dateSubmited = $dateSubmited; } /** * @ORM\ManyToMany(targetEntity="AppBundle\Entity\Realisateur", inversedBy="films", cascade="persist") * @var \Doctrine\Common\Collections\Collection */ private $realisateurs; /** * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User") * @ORM\JoinColumn(nullable=true) */ private $authered; /** * @ORM\ManyToMany(targetEntity="AppBundle\Entity\User", inversedBy="films") * @ORM\JoinTable(name="filmsavoir_users") * @var \Doctrine\Common\Collections\Collection */ private $usersWantToView; /** * @ORM\ManyToMany(targetEntity="AppBundle\Entity\User", inversedBy="filmsVus") * @ORM\JoinTable(name="filmsvus_users") * @var \Doctrine\Common\Collections\Collection */ private $usersWhoSeen; /** * @ORM\ManyToMany(targetEntity="AppBundle\Entity\Genre", cascade={"persist"}) * @var \Doctrine\Common\Collections\Collection */ private $genres; /** * @return mixed */ public function getAuthered() { return $this->authered; } /** * @param mixed $authered */ public function setAuthered($authered) { $this->authered = $authered; $this->addUserWantToView($authered); } /** * Get id * * @return int */ public function getId() { return $this->id; } /** * Set titre * * @param string $titre * * @return Film */ public function setTitre($titre) { $this->titre = $titre; return $this; } /** * Get titre * * @return string */ public function getTitre() { return $this->titre; } /** * Set annee * * @param \DateTime $annee * * @return Film */ public function setAnnee($annee) { $this->annee = $annee; return $this; } /** * Get annee * * @return \DateTime */ public function getAnnee() { return $this->annee; } /** * Constructor */ public function __construct() { $this->realisateurs = new \Doctrine\Common\Collections\ArrayCollection(); $this->usersWantToView = new \Doctrine\Common\Collections\ArrayCollection(); $this->usersWhoSeen = new \Doctrine\Common\Collections\ArrayCollection(); $this->genres = new \Doctrine\Common\Collections\ArrayCollection(); $this->setDateSubmited(new \DateTime()); } /** * Add realisateur * * @param \AppBundle\Entity\Realisateur $realisateur * * @return Film */ public function addRealisateur(\AppBundle\Entity\Realisateur $realisateur) { $this->realisateurs[] = $realisateur; return $this; } /** * Remove realisateur * * @param \AppBundle\Entity\Realisateur $realisateur */ public function removeRealisateur(\AppBundle\Entity\Realisateur $realisateur) { $this->realisateurs->removeElement($realisateur); } /** * Get realisateurs * * @return \Doctrine\Common\Collections\Collection */ public function getRealisateurs() { return $this->realisateurs; } /////////////////////////////////////////////////////// /** * Add user * * @param \AppBundle\Entity\User $user * * @return film */ public function addUserWantToView(\AppBundle\Entity\User $user) { $this->usersWantToView[] = $user; $user->addFilm($this); return $this; } /** * Remove user * * @param \AppBundle\Entity\User $user */ public function removeUserWantToView(\AppBundle\Entity\User $user) { $this->usersWantToView->removeElement($user); $user->removeFilm($this); } /** * Get usersWantToView * * @return \Doctrine\Common\Collections\Collection */ public function getUsersWantToView() { return $this->usersWantToView; } /** * Inverse ToSee * @param \AppBundle\Entity\User $user */ public function inverseUserWantToView(\AppBundle\Entity\User $user) { if ($this->usersWantToView->contains($user)) { $this->removeUserWantToView($user); } else { $this->addUserWantToView($user); } } ///////////////////////////////////////////////////////////////////// /** * Add user * * @param \AppBundle\Entity\User $user * * @return film */ public function addUserWhoSeen(\AppBundle\Entity\User $user) { $this->usersWhoSeen[] = $user; $user->addFilmVu($this); return $this; } /** * Remove user * * @param \AppBundle\Entity\User $user */ public function removeUserWhoSeen(\AppBundle\Entity\User $user) { $this->usersWhoSeen->removeElement($user); $user->removeFilmVu($this); } /** * Get usersWantToView * * @return \Doctrine\Common\Collections\Collection */ public function getUsersWhoSeen() { return $this->usersWhoSeen; } /** * Inverse ToSee * @param \AppBundle\Entity\User $user */ public function inverseUserWhoSeen(\AppBundle\Entity\User $user) { if ($this->usersWhoSeen->contains($user)) { $this->removeUserWhoSeen($user); } else { $this->addUserWhoSeen($user); } } /** * Get genre * * @return \Doctrine\Common\Collections\Collection */ public function getGenres() { return $this->genres; } /** * Add genre * * @param \AppBundle\Entity\Genre $genre * * @return film */ public function addGenre(\AppBundle\Entity\Genre $genre) { $this->genres[] = $genre; return $this; } /** * Remove genre * * @param \AppBundle\Entity\Genre $genre * @return Film */ public function removeGenre(\AppBundle\Entity\Genre $genre) { $this->genres->removeElement($genre); return $this; } }