Browse Source

virer un commentaire en même temps qu'un film

François 6 years ago
parent
commit
d94bd7f43b

+ 2 - 0
src/AppBundle/Controller/VideothequeController.php

@@ -143,6 +143,8 @@ class VideothequeController extends Controller
         if ($form->isSubmitted() && $form->isValid())
         {
             $em = $this->getDoctrine()->getManager();
+            $commenraire = $em->getRepository('AppBundle:Commentaire')->findOneBy(array('film'=>$film));
+            $em->remove($commenraire);
             $em->remove($film);
             $em->flush();
             $this->addFlash('success', 'Le film '.$film->getTitre().' a bien été supprimé.');

+ 1 - 1
src/AppBundle/Entity/Commentaire.php

@@ -29,7 +29,7 @@ class Commentaire
     private $contenu;
 
     /**
-     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Film")
+     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Film", cascade={"remove"})
      * @ORM\JoinColumn(nullable=false)
      */
     private $film;