| 1 | <?php |
||
| 17 | class UserDefinedFormControllerExtension extends Extension |
||
| 18 | { |
||
| 19 | private static $allowed_actions = [ |
||
|
|
|||
| 20 | 'verify' |
||
| 21 | ]; |
||
| 22 | /** |
||
| 23 | * @var null|PartialFormSubmission |
||
| 24 | */ |
||
| 25 | protected $partialForm; |
||
| 26 | |||
| 27 | public function onBeforeInit() |
||
| 31 | |||
| 32 | public function verify() |
||
| 36 | |||
| 37 | public function getPartialForm() |
||
| 41 | } |
||
| 42 |