You are here

function uc_webform_node_insert in Ubercart Webform Integration 7

Implements hook_node_insert

1 call to uc_webform_node_insert()
uc_webform_node_update in ./uc_webform.module
Implements hook_node_update

File

./uc_webform.module, line 85

Code

function uc_webform_node_insert($node) {
  if (uc_product_is_product($node)) {
    db_insert('uc_webform')
      ->fields(array(
      'nid' => $node->nid,
      'webform_nid' => $node->webform_nid,
      'submit' => $node->uc_webform_submit,
    ))
      ->execute();
  }
}