mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Substituted old menu trough KNP menu bundle
This commit is contained in:
@@ -17,7 +17,7 @@ class DefaultController extends AbstractController implements DefaultControllerI
|
||||
*/
|
||||
public function imprint(): Response
|
||||
{
|
||||
return $this->render("standard/imprint.html.twig",['menu_items'=>[]]);
|
||||
return $this->render("standard/imprint.html.twig");
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -25,7 +25,7 @@ class DefaultController extends AbstractController implements DefaultControllerI
|
||||
*/
|
||||
public function homepage(): Response
|
||||
{
|
||||
return $this->render("standard/homepage.html.twig",['menu_items'=>[]]);
|
||||
return $this->render("standard/homepage.html.twig");
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -17,7 +17,7 @@ class UserController extends AbstractController implements UserControllerInterfa
|
||||
*/
|
||||
public function logout(): Response
|
||||
{
|
||||
return $this->render("user/login.html.twig",['menu_items'=>[]]);
|
||||
return $this->render("user/login.html.twig");
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -25,7 +25,7 @@ class UserController extends AbstractController implements UserControllerInterfa
|
||||
*/
|
||||
public function login(): Response
|
||||
{
|
||||
return $this->render("user/login.html.twig",['menu_items'=>[]]);
|
||||
return $this->render("user/login.html.twig");
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -33,7 +33,6 @@ class UserController extends AbstractController implements UserControllerInterfa
|
||||
*/
|
||||
public function register(): Response
|
||||
{
|
||||
return $this->render("user/register.html.twig",['menu_items'=>[]]);
|
||||
return $this->render("user/register.html.twig");
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user