You are here

function _webform_defaults_node in Webform Node Element 6

Same name and namespace in other branches
  1. 7 components/node.inc \_webform_defaults_node()

Implements _webform_defaults_component().

File

components/node.inc, line 10
Webform module node component.

Code

function _webform_defaults_node() {
  return array(
    'name' => '',
    'form_key' => NULL,
    'pid' => 0,
    'weight' => 0,
    'value' => '',
    'extra' => array(
      'nid' => 0,
      'title' => 0,
      'view_mode' => FALSE,
    ),
  );
}