|
@@ -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")
|