1 | <?php |
||
19 | class FormController extends ActionController |
||
20 | { |
||
21 | /** |
||
22 | * @var FormzControllerContext |
||
23 | */ |
||
24 | protected $formzControllerContext; |
||
25 | |||
26 | /** |
||
27 | * @var HashService |
||
28 | */ |
||
29 | protected $hashService; |
||
30 | |||
31 | /** |
||
32 | * Main action used to dispatch the request properly, depending on Formz |
||
33 | * configuration. |
||
34 | */ |
||
35 | public function processFormAction() |
||
45 | |||
46 | /** |
||
47 | * @todo |
||
48 | * |
||
49 | * @return array |
||
50 | */ |
||
51 | protected function getRequestData() |
||
63 | |||
64 | /** |
||
65 | * @param FormzControllerContext $formzControllerContext |
||
66 | */ |
||
67 | public function injectFormzControllerContext(FormzControllerContext $formzControllerContext) |
||
71 | |||
72 | /** |
||
73 | * @param HashService $hashService |
||
74 | */ |
||
75 | public function injectHashService(HashService $hashService) |
||
79 | } |
||
80 |