Browse Source

AJout d'un badge new ajout depuis moins d'un jour

François 6 năm trước cách đây
mục cha
commit
c03e904627

+ 9 - 0
src/AppBundle/Entity/Film.php

@@ -68,6 +68,15 @@ class Film
         $this->dateSubmited = $dateSubmited;
     }
 
+    /**
+     * @return boolean
+     */
+    public function isNew()
+    {
+        $finNew = $this->getDateSubmited()->modify('+1 day');
+        return (new \DateTime('now') < $finNew);
+    }
+
     /**
      * @Assert\Valid()
      * @ORM\OneToOne(targetEntity="AppBundle\Entity\MediaVideo", cascade={"persist","remove"})

+ 2 - 2
src/AppBundle/Repository/FilmRepository.php

@@ -24,7 +24,7 @@ class FilmRepository extends \Doctrine\ORM\EntityRepository
         $qb = $this->createQueryBuilder('f');
         $qb
             ->innerJoin('f.genres', 'g')
-            ->addSelect('f');
+            ->addSelect('g');
 
         $qb->where($qb->expr()->in('g.name', $genreNames));
 
@@ -37,7 +37,7 @@ class FilmRepository extends \Doctrine\ORM\EntityRepository
         $qb = $this->createQueryBuilder('f');
         $qb
             ->innerJoin('f.realisateurs', 'r')
-            ->addSelect('f');
+            ->addSelect('r');
 
         $qb->where($qb->expr()->in('r.nomComplet', $realisateursnames));
 

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

@@ -56,7 +56,10 @@
 					{{ film.authered.username }}
 				{% endif %}
 			</td>
-			<td><a href="{{ path('videotheque_voirfilm', {'id': film.id}) }}">{{ film.titre }}</a></td>
+			<td>
+				<a href="{{ path('videotheque_voirfilm', {'id': film.id}) }}">{{ film.titre }}</a>
+				{% if film.new %}<span class="badge badge-light">New</span>{% endif %}
+			</td>
 			<td>
 				{% if film.genres is defined %}
 					{% for genre in film.genres %}