From: Raphaƫl Gertz <git@rapsys.eu>
Date: Sun, 29 Nov 2020 06:07:05 +0000 (+0100)
Subject: Add translated location fetch
X-Git-Tag: 0.1.4~17
X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/558e8fc52bb6403cdeea8b45c9767a6678ca8905

Add translated location fetch
---

diff --git a/Controller/UserController.php b/Controller/UserController.php
index 223b463..37ee540 100644
--- a/Controller/UserController.php
+++ b/Controller/UserController.php
@@ -6,6 +6,7 @@ use Symfony\Component\HttpFoundation\Request;
 
 use Rapsys\AirBundle\Entity\Slot;
 use Rapsys\AirBundle\Entity\Session;
+use Rapsys\AirBundle\Entity\Location;
 use Rapsys\AirBundle\Entity\User;
 
 class UserController extends DefaultController {
@@ -82,7 +83,11 @@ class UserController extends DefaultController {
 		//TODO: highlight with current session route parameter
 		$calendar = $doctrine->getRepository(Session::class)->fetchUserCalendarByDatePeriod($this->translator, $period, $id, $request->get('session'));
 
+		//Fetch locations
+		//XXX: we want to display all active locations anyway
+		$locations = $doctrine->getRepository(Location::class)->fetchTranslatedUserLocationByDatePeriod($this->translator, $period, $id);
+
 		//Render the view
-		return $this->render('@RapsysAir/user/view.html.twig', ['id' => $id, 'title' => $title, 'section' => $section, 'calendar' => $calendar]+$context+$this->context);
+		return $this->render('@RapsysAir/user/view.html.twig', ['id' => $id, 'title' => $title, 'section' => $section, 'calendar' => $calendar, 'locations' => $locations]+$context+$this->context);
 	}
 }