浏览代码

Recherche par catégorie

François 6 年之前
父节点
当前提交
3a40d211a0

+ 16 - 1
src/AppBundle/Controller/VideothequeController.php

@@ -3,6 +3,7 @@
 namespace AppBundle\Controller;
 
 use AppBundle\Entity\Commentaire;
+use AppBundle\Entity\Genre;
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
 use Symfony\Component\HttpFoundation\JsonResponse;
@@ -33,7 +34,21 @@ class VideothequeController extends Controller
 		return $this->render('@App/videotheque/liste.html.twig', array(
 			'listeFilms'	=>	$listeFilms
 		));
-	}	
+	}
+
+    /**
+     * @Route("/liste-by/{id}", name="videotheque_listepargenre")
+     */
+	public function  listeParGenreAction(\AppBundle\Entity\Genre $genre)
+    {
+        $em = $this->getDoctrine()->getManager();
+        $films = $em->getRepository('AppBundle:Film')->findFilmWithGenre(array($genre->getName()));
+
+        return $this->render('@App/videotheque/liste.html.twig', array(
+            'listeFilms'    => $films,
+            'titre'         => 'Films par catégorie : '.$genre->getName()
+        ));
+    }
 
 	/**
 	 * @Route("/ajouter", name="videotheque_ajouter")

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

@@ -60,7 +60,7 @@
 			<td>
 				{% if film.genres is defined %}
 					{% for genre in film.genres %}
-						<span class="badge badge-secondary">{{ genre.name }}</span>
+						<a href="{{ path("videotheque_listepargenre", {"id": genre.id}) }}"><span class="badge badge-secondary">{{ genre.name }}</span></a>
 					{% endfor %}
 				{% endif %}
 			</td>