|
@@ -13,11 +13,13 @@ class FilmManager {
|
|
|
private $em;
|
|
|
private $uc;
|
|
|
private $user;
|
|
|
+ private $cm;
|
|
|
|
|
|
- public function __construct(EntityManagerInterface $em, UniciteCollections $uc, Security $security)
|
|
|
+ public function __construct(EntityManagerInterface $em, UniciteCollections $uc, CommentaireManager $cm, Security $security)
|
|
|
{
|
|
|
$this->em = $em;
|
|
|
$this->uc = $uc;
|
|
|
+ $this->cm = $cm;
|
|
|
$this->user = $security->getUser();
|
|
|
}
|
|
|
|
|
@@ -37,12 +39,13 @@ class FilmManager {
|
|
|
|
|
|
public function delFilm(Film $film)
|
|
|
{
|
|
|
- /*$commentaire = $this->em->getRepository('App:Commentaire')->findOneBy(array('film'=>$film));
|
|
|
- if ($commentaire != null)
|
|
|
+ $commentaires = $film->getCommentaires();
|
|
|
+ foreach($commentaires as $commentaire)
|
|
|
{
|
|
|
- $this->em->remove($commentaire);
|
|
|
- }*/
|
|
|
+ $this->cm->delCommentaire($commentaire);
|
|
|
+ }
|
|
|
$this->em->remove($film);
|
|
|
+
|
|
|
$this->em->flush();
|
|
|
}
|
|
|
}
|