RegistrationController.php
972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* Created by PhpStorm.
* User: ubv-cipee
* Date: 29/06/16
* Time: 09:08 AM
*/
namespace AppBundle\Controller;
use AppBundle\Form\UserType;
use AppBundle\Entity\Usuarios;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
class RegistrationController extends Controller
{
/**
* @Route("/register", name="user_registration")
*/
public function registerAction(Request $request)
{
// 1) build the form
$form = $this->createForm('AppBundle\Form\UserType');
// 2) handle the submit (will only happen on POST)
$form->handleRequest($request);
//var_dump($form->isValid());
if ($form->isSubmitted() && $form->isValid()) {
}
return $this->render(
'registration/register.html.twig',
array('form' => $form->createView())
);
}
}