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