Sfoglia il codice sorgente

Tri par ordre descendant de dépot

François 6 anni fa
parent
commit
6f73f28a62

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

@@ -28,7 +28,7 @@ class VideothequeController extends Controller
 	{
 		$em = $this->getDoctrine()->getManager();
 		$repo = $em->getRepository('AppBundle:Film');
-		$listeFilms = $repo->findAll();
+		$listeFilms = $repo->findTousDesc();
 
 		return $this->render('@App/videotheque/liste.html.twig', array(
 			'listeFilms'	=>	$listeFilms

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

@@ -32,4 +32,15 @@ class FilmRepository extends \Doctrine\ORM\EntityRepository
             ->getQuery()
             ->getResult();
     }
+
+    public function findTousDesc() {
+        $qb = $this->createQueryBuilder('f');
+        $qb
+            ->select('f')
+            ->orderBy('f.dateSubmited', 'DESC');
+
+        return $qb
+            ->getQuery()
+            ->getResult();
+    }
 }