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