Skip to content
Snippets Groups Projects
Commit 3f05590e authored by Fabrice Gangler's avatar Fabrice Gangler :art:
Browse files

feat: allow to change locale in url of pages displaying organizations by type

parent 76520108
No related branches found
No related tags found
No related merge requests found
Pipeline #93446 failed
......@@ -133,6 +133,8 @@ public function displayOneOrganizationPage(
}
///////////////////////////////////////////////////////////////////////////////////
#[Route(
path: [
'en' => '/{_locale}/organisations/',
......@@ -171,7 +173,6 @@ public function allOrganizationsPageFixUrlTypo(string $_locale): RedirectRespons
);
}
#[Route(
path: [
'en' => '/{_locale}/organizations/',
......@@ -190,6 +191,27 @@ public function displayAllOrganization(string $_locale, OrganizationRepository $
];
}
///////////////////////////////////////////////////////////////////////////////////
#[Route(
path: [
'en' => '/{_locale}/organisations/entreprises/',
'fr' => '/{_locale}/organizations/companies/',
],
name: 'app_anonymous_organization_display_all_company_allow_to_change_locale_in_url',
methods: ['GET', 'HEAD']
)]
public function allCompaniesPageAllowToChangeLocaleInUrl(string $_locale): RedirectResponse
{
return new RedirectResponse(
url: $this->generateUrl(
route: 'app_anonymous_organization_display_all_org_company',
parameters: ['_locale' => "$_locale"],
),
status: Response::HTTP_PERMANENTLY_REDIRECT,
);
}
#[Route(
path: [
'en' => '/{_locale}/organizations/companies/',
......@@ -209,6 +231,27 @@ public function displayAllCompanies(
);
}
///////////////////////////////////////////////////////////////////////////////////
#[Route(
path: [
'en' => '/{_locale}/organisations/administration/',
'fr' => '/{_locale}/organizations/public-sector/',
],
name: 'app_anonymous_organization_display_all_public_sector_allow_to_change_locale_in_url',
methods: ['GET', 'HEAD']
)]
public function allPublicSectorPageAllowToChangeLocaleInUrl(string $_locale): RedirectResponse
{
return new RedirectResponse(
url: $this->generateUrl(
route: 'app_anonymous_organization_display_all_org_public_sector',
parameters: ['_locale' => "$_locale"],
),
status: Response::HTTP_PERMANENTLY_REDIRECT,
);
}
#[Route(
path: [
'en' => '/{_locale}/organizations/public-sector/',
......@@ -228,6 +271,27 @@ public function displayAllPublicSector(
);
}
///////////////////////////////////////////////////////////////////////////////////
#[Route(
path: [
'en' => '/{_locale}/organisations/association/',
'fr' => '/{_locale}/organizations/non-profit/',
],
name: 'app_anonymous_organization_display_all_no_profit_allow_to_change_locale_in_url',
methods: ['GET', 'HEAD']
)]
public function allNoProfitOrgPageAllowToChangeLocaleInUrl(string $_locale): RedirectResponse
{
return new RedirectResponse(
url: $this->generateUrl(
route: 'app_anonymous_organization_display_all_org_no_profit',
parameters: ['_locale' => "$_locale"],
),
status: Response::HTTP_PERMANENTLY_REDIRECT,
);
}
#[Route(
path: [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment