1 | <?php |
||
18 | class PartialUserFormVerifyController extends PageController |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * @var array |
||
23 | */ |
||
24 | private static $allowed_actions = [ |
||
1 ignored issue
–
show
|
|||
25 | 'getForm' |
||
26 | ]; |
||
27 | /** |
||
28 | * @var PartialFormSubmission |
||
29 | */ |
||
30 | protected $partialFormSubmission; |
||
31 | |||
32 | /** |
||
33 | * @var PasswordForm |
||
34 | */ |
||
35 | protected $form; |
||
36 | |||
37 | /** |
||
38 | * @return PartialUserFormVerifyController|void |
||
39 | * @throws HTTPResponse_Exception |
||
40 | */ |
||
41 | public function init() |
||
58 | |||
59 | /** |
||
60 | * @return PasswordForm |
||
61 | */ |
||
62 | public function getForm() |
||
66 | |||
67 | |||
68 | /** |
||
69 | * @param array $data |
||
70 | * @param PasswordForm $form |
||
71 | * @return HTTPResponse |
||
72 | */ |
||
73 | public function doValidate($data, $form) |
||
98 | |||
99 | /** |
||
100 | * @return mixed |
||
101 | */ |
||
102 | public function getPartialFormSubmission() |
||
106 | |||
107 | /** |
||
108 | * @param mixed $partialFormSubmission |
||
109 | */ |
||
110 | public function setPartialFormSubmission($partialFormSubmission): void |
||
114 | } |
||
115 |