You are here

function webform_node_element_webform_component_info in Webform Node Element 6

Same name and namespace in other branches
  1. 7 webform_node_element.module \webform_node_element_webform_component_info()

File

./webform_node_element.module, line 7

Code

function webform_node_element_webform_component_info() {
  $components = array();
  $components['node'] = array(
    'label' => t('Node'),
    'description' => t('Displays node body content in the form; does not render a field.'),
    'features' => array(
      'csv' => FALSE,
      'email' => FALSE,
      'required' => FALSE,
      'conditional' => FALSE,
      'title_display' => FALSE,
    ),
    'file' => 'components/node.inc',
  );
  return $components;
}