function webform_client_form_includes in Webform 6.3
Same name and namespace in other branches
- 7.3 webform.module \webform_client_form_includes()
Process function for webform_client_form().
Include all the enabled components for this form to ensure availability.
1 string reference to 'webform_client_form_includes'
- webform_client_form in ./
webform.module - Client form generation function. If this is displaying an existing submission, pass in the $submission variable with the contents of the submission to be displayed.
File
- ./
webform.module, line 1911
Code
function webform_client_form_includes($form, $form_state) {
$components = webform_components();
foreach ($components as $component_type => $component) {
webform_component_include($component_type);
}
return $form;
}