Ver código fonte

Tri par réalisateurs

François 6 anos atrás
pai
commit
9ba29ab968

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

@@ -4,6 +4,7 @@ namespace AppBundle\Controller;
 
 use AppBundle\Entity\Commentaire;
 use AppBundle\Entity\Genre;
+use AppBundle\Entity\Realisateur;
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
 use Symfony\Component\HttpFoundation\JsonResponse;
@@ -50,6 +51,20 @@ class VideothequeController extends Controller
         ));
     }
 
+    /**
+     * @Route("/liste-by_real/{id}", name="videotheque_listeparreal")
+     */
+    public function  listeParRealisateurAction(Realisateur $realisateur)
+    {
+        $em = $this->getDoctrine()->getManager();
+        $films = $em->getRepository('AppBundle:Film')->findFilmWithReal(array($realisateur->getNomComplet()));
+
+        return $this->render('@App/videotheque/liste.html.twig', array(
+            'listeFilms'    => $films,
+            'titre'         => 'Films par réalisateur : '.$realisateur->getNomComplet()
+        ));
+    }
+
 	/**
 	 * @Route("/ajouter", name="videotheque_ajouter")
 	 */

+ 15 - 0
src/AppBundle/Repository/FilmRepository.php

@@ -33,6 +33,21 @@ class FilmRepository extends \Doctrine\ORM\EntityRepository
             ->getResult();
     }
 
+    public function findFilmWithReal(array $realisateursnames) {
+        $qb = $this->createQueryBuilder('f');
+        $qb
+            ->innerJoin('f.realisateurs', 'r')
+            ->addSelect('f');
+
+        $qb->where($qb->expr()->in('r.nomComplet', $realisateursnames));
+
+        return $qb
+            ->getQuery()
+            ->getResult();
+    }
+
+
+
     public function findTousDesc() {
         $qb = $this->createQueryBuilder('f');
         $qb

+ 1 - 1
src/AppBundle/Resources/views/videotheque/liste.html.twig

@@ -67,7 +67,7 @@
 			<td>
 			{% if film.realisateurs is defined %}
 				{%  for realisateur in film.realisateurs %}
-					<a href="{{ path('realisateur_modifier', {"id": realisateur.id}) }}"><span class="badge badge-info">{{ realisateur.nomComplet }}</span> </a>
+					<a href="{{ path('videotheque_listeparreal', {"id": realisateur.id}) }}"><span class="badge badge-info">{{ realisateur.nomComplet }}</span> </a>
 				{%  endfor %}
 			{% endif %}
 			</td>