1 | <?php |
||
15 | class PartialFormSubmission extends SubmittedForm |
||
16 | { |
||
17 | private static $table_name = 'PartialFormSubmission'; |
||
18 | |||
19 | private static $has_one = [ |
||
20 | 'UserDefinedForm' => UserDefinedForm::class |
||
21 | ]; |
||
22 | |||
23 | private static $has_many = [ |
||
24 | 'PartialFields' => PartialFieldSubmission::class |
||
25 | ]; |
||
26 | |||
27 | public function canEdit($member = null) |
||
31 | |||
32 | public function canDelete($member = null) |
||
36 | } |
||
37 |