From 695a92febd4483f92fb8520bee1451317df8510f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Fri, 7 May 2021 15:33:46 +0200 Subject: [PATCH] Create monde morning as before session --- Controller/ApplicationController.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Controller/ApplicationController.php b/Controller/ApplicationController.php index 88bb182..625e7f8 100644 --- a/Controller/ApplicationController.php +++ b/Controller/ApplicationController.php @@ -277,6 +277,13 @@ class ApplicationController extends DefaultController { //Set length at 4h $session->setLength(new \DateTime('04:00:00')); + //Jardin du Monde => 14h -> 15h + } elseif ($short == 'Monde' && $slot == 'Morning') { + //Set begin at 14h + $session->setBegin(new \DateTime('14:00:00')); + + //Set length at 4h + $session->setLength(new \DateTime('01:00:00')); //Combination not supported } else { //Add error in flash message -- 2.41.0