From 2b4888e4a7a40ec60ec9c876c54d4eab6dbb4c32 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Mon, 24 Oct 2022 07:36:57 +0200 Subject: [PATCH] Add default locations_link and locations_title --- Controller/AbstractController.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Controller/AbstractController.php b/Controller/AbstractController.php index 8a10b87..f06178d 100644 --- a/Controller/AbstractController.php +++ b/Controller/AbstractController.php @@ -509,6 +509,18 @@ abstract class AbstractController extends BaseAbstractController implements Serv }*/ } + //With empty locations link + if (empty($parameters['locations_link'])) { + //Set locations link + $parameters['locations_link'] = $this->router->generate('rapsys_air_location'); + } + + //With empty locations title + if (empty($parameters['locations_title'])) { + //Set locations title + $parameters['locations_title'] = $this->translator->trans('Locations', [], null, $this->locale); + } + //With canonical if (!empty($parameters['canonical'])) { //Set facebook url -- 2.41.0