webform_node_element.module in Webform Node Element 7
File
webform_node_element.module
View source
<?php
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' => TRUE,
'email' => TRUE,
'required' => FALSE,
'conditional' => FALSE,
'title_display' => TRUE,
'title_inline' => TRUE,
),
'file' => 'components/node.inc',
);
return $components;
}