|
@@ -62,8 +62,8 @@ class SecurityController extends AbstractController
|
|
|
$this->addFlash('success', 'L\'utilisateur a été ajouté');
|
|
|
return $this->redirectToRoute('admin_index');
|
|
|
}
|
|
|
- return $this->render('security/createuser.html.twig', array (
|
|
|
- 'form' => $form->createView()
|
|
|
+ return $this->renderForm('security/createuser.html.twig', array (
|
|
|
+ 'form' => $form
|
|
|
));
|
|
|
}
|
|
|
|
|
@@ -80,8 +80,8 @@ class SecurityController extends AbstractController
|
|
|
$this->addFlash('success', 'L\'utilisateur a été modifié');
|
|
|
return $this->redirectToRoute('admin_index');
|
|
|
}
|
|
|
- return $this->render('security/createuser.html.twig', array (
|
|
|
- 'form' => $form->createView()
|
|
|
+ return $this->renderForm('security/createuser.html.twig', array (
|
|
|
+ 'form' => $form
|
|
|
));
|
|
|
}
|
|
|
|
|
@@ -100,9 +100,9 @@ class SecurityController extends AbstractController
|
|
|
return $this->redirectToRoute('admin_index');
|
|
|
}
|
|
|
|
|
|
- return $this->render('profil/preferences.html.twig', [
|
|
|
+ return $this->renderForm('profil/preferences.html.twig', [
|
|
|
'user' => $options->getUser(),
|
|
|
- 'form' => $form->createView()
|
|
|
+ 'form' => $form
|
|
|
]);
|
|
|
}
|
|
|
|
|
@@ -130,9 +130,9 @@ class SecurityController extends AbstractController
|
|
|
$this->addFlash("success", "L'utilisateur a bien été supprimé");
|
|
|
return $this->redirectToRoute('admin_index');
|
|
|
}
|
|
|
- return $this->render('security/supprimeruser.html.twig', array (
|
|
|
+ return $this->renderForm('security/supprimeruser.html.twig', array (
|
|
|
'user' => $user,
|
|
|
- 'form' => $form->createView()
|
|
|
+ 'form' => $form
|
|
|
));
|
|
|
}
|
|
|
|
|
@@ -156,8 +156,8 @@ class SecurityController extends AbstractController
|
|
|
return $this->redirectToRoute('app_login');
|
|
|
}
|
|
|
|
|
|
- return $this->render('security/register.html.twig', array(
|
|
|
- 'form' => $form->createView()
|
|
|
+ return $this->renderForm('security/register.html.twig', array(
|
|
|
+ 'form' => $form
|
|
|
));
|
|
|
}
|
|
|
|
|
@@ -189,8 +189,8 @@ class SecurityController extends AbstractController
|
|
|
$this->addFlash('warning', "Cet email n'existe pas");
|
|
|
}
|
|
|
}
|
|
|
- return $this->render('security/chercheruserpourpassword.html.twig', array (
|
|
|
- 'form' => $form->createView()
|
|
|
+ return $this->renderForm('security/chercheruserpourpassword.html.twig', array (
|
|
|
+ 'form' => $form
|
|
|
));
|
|
|
}
|
|
|
|
|
@@ -208,8 +208,8 @@ class SecurityController extends AbstractController
|
|
|
$this->addFlash('success', 'Mot de passe changé, veuillez vous connecter');
|
|
|
return $this->redirectToRoute('videotheque_liste');
|
|
|
}
|
|
|
- return $this->render('security/password.html.twig', array(
|
|
|
- 'form' => $form->createView()
|
|
|
+ return $this->renderForm('security/password.html.twig', array(
|
|
|
+ 'form' => $form
|
|
|
));
|
|
|
}
|
|
|
}
|