|
@@ -56,26 +56,32 @@ class Film
|
|
|
private $realisateurs;
|
|
|
|
|
|
/**
|
|
|
- * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User", inversedBy="films")
|
|
|
+ * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User", inversedBy="filmsAjoutes")
|
|
|
* @ORM\JoinColumn(nullable=true)
|
|
|
*/
|
|
|
- private $user;
|
|
|
+ private $authered;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @ORM\ManyToMany(targetEntity="AppBundle\Entity\User", inversedBy="films")
|
|
|
+ * @var \Doctrine\Common\Collections\Collection
|
|
|
+ */
|
|
|
+ private $usersWantToView;
|
|
|
|
|
|
/**
|
|
|
* @return mixed
|
|
|
*/
|
|
|
- public function getUser()
|
|
|
+ public function getAuthered()
|
|
|
{
|
|
|
- return $this->user;
|
|
|
+ return $this->authered;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @param mixed $user
|
|
|
+ * @param mixed $authered
|
|
|
*/
|
|
|
- public function setUser($user)
|
|
|
+ public function setAuthered($authered)
|
|
|
{
|
|
|
- $this->user = $user;
|
|
|
- $user->addFilm($this);
|
|
|
+ $this->authered = $authered;
|
|
|
+ $authered->addFilm($this);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -155,7 +161,7 @@ class Film
|
|
|
/**
|
|
|
* Get titre
|
|
|
*
|
|
|
- * @return text
|
|
|
+ * @return string
|
|
|
*/
|
|
|
public function getCommentaire()
|
|
|
{
|
|
@@ -192,6 +198,7 @@ class Film
|
|
|
public function __construct()
|
|
|
{
|
|
|
$this->realisateurs = new \Doctrine\Common\Collections\ArrayCollection();
|
|
|
+ $this->usersWantToView = new \Doctrine\Common\Collections\ArrayCollection();
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -227,4 +234,57 @@ class Film
|
|
|
{
|
|
|
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);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|