1 | <?php |
||
22 | class TakeCustomerAccountForm extends BaseForm |
||
23 | { |
||
24 | /** |
||
25 | * @return string the name of you form. This name must be unique |
||
26 | */ |
||
27 | public function getName() |
||
31 | |||
32 | /** |
||
33 | * |
||
34 | * in this function you add all the fields you need for your Form. |
||
35 | * Form this you have to call add method on $this->formBuilder attribute : |
||
36 | * |
||
37 | */ |
||
38 | protected function buildForm() |
||
41 | } |
||
42 |