You are here

function webform_node_prepare in Webform 6.3

Same name and namespace in other branches
  1. 7.4 webform.module \webform_node_prepare()
  2. 7.3 webform.module \webform_node_prepare()

Implements hook_node_prepare().

1 call to webform_node_prepare()
webform_nodeapi in ./webform.module
Implements hook_nodeapi().

File

./webform.module, line 1177

Code

function webform_node_prepare(&$node) {
  if (!isset($node->webform)) {
    $node->webform = webform_node_defaults();
  }
}