Users Controller provides forms, templates and logic for managing user accounts
package |
App\Controller |
---|---|
Route |
("/users") |
deleteUsersAction(\Symfony\Component\HttpFoundation\Request $request, \App\Entity\Users $user) : \Symfony\Component\HttpFoundation\RedirectResponse
Route |
("/{id}", name="users_delete", methods={"DELETE"}) |
---|
\Symfony\Component\HttpFoundation\Request
\App\Entity\Users
\Symfony\Component\HttpFoundation\RedirectResponse
editUsersAction(\Symfony\Component\HttpFoundation\Request $request, \App\Entity\Users $user, \Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface $passwordEncoder) : \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response
Route |
("/{id}/edit", name="users_edit", methods={"GET","POST"}) |
---|
\Symfony\Component\HttpFoundation\Request
\App\Entity\Users
\Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface
\Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response
indexUsersAction() : \Symfony\Component\HttpFoundation\Response
Route |
("/", name="users_index", methods={"GET"}) |
---|---|
\Symfony\Component\HttpFoundation\Response
newUsersAction(\Symfony\Component\HttpFoundation\Request $request, \Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface $passwordEncoder) : \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response
Route |
("/new", name="users_new", methods={"GET","POST"}) |
---|
\Symfony\Component\HttpFoundation\Request
\Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface
\Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response
showUsersAction(\App\Entity\Users $user) : \Symfony\Component\HttpFoundation\Response
Route |
("/{id}", name="users_show", methods={"GET"}) |
---|
\App\Entity\Users
\Symfony\Component\HttpFoundation\Response