function _webform_submission_display_fieldset in Webform 5.2
Same name and namespace in other branches
- 5 components/fieldset.inc \_webform_submission_display_fieldset()
- 6.2 components/fieldset.inc \_webform_submission_display_fieldset()
Display the result of a fieldset submission. The output of this function will be displayed under the "results" tab then "submissions".
Parameters
$data: An array of information containing the submission result, directly correlating to the webform_submitted_data database schema.
$component: An array of information describing the component, directly correlating to the webform_component database schema.
Return value
Textual output formatted for human reading.
File
- components/
fieldset.inc, line 88 - Webform module fieldset component.
Code
function _webform_submission_display_fieldset($data, $component, $enabled = FALSE) {
$form_item = _webform_render_fieldset($component);
return $form_item;
}