You are here

function webform_node_prepare in Webform 7.4

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

Implements hook_node_prepare().

File

./webform.module, line 1777
This module provides a simple way to create forms and questionnaires.

Code

function webform_node_prepare($node) {
  if (variable_get('webform_node_' . $node->type, FALSE) && !isset($node->webform)) {
    $node->webform = webform_node_defaults();
  }
}