function webform_components_page in Webform 7.3
Same name and namespace in other branches
- 6.3 includes/webform.components.inc \webform_components_page()
- 7.4 includes/webform.components.inc \webform_components_page()
Overview page of all components for this webform.
1 string reference to 'webform_components_page'
- webform_menu in ./
webform.module - Implements hook_menu().
File
- includes/
webform.components.inc, line 17 - Webform module component handling.
Code
function webform_components_page($node, $page_number = 1) {
$output = drupal_get_form('webform_components_form', $node);
return array(
'#theme' => 'webform_components_page',
'#node' => $node,
'#form' => $output,
);
}