You are here

function webform_components_page in Webform 6.3

Same name and namespace in other branches
  1. 7.4 includes/webform.components.inc \webform_components_page()
  2. 7.3 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) {
  $form = drupal_get_form('webform_components_form', $node);
  return theme('webform_components_page', $node, $form);
}