You are here

function webform_template_nodeapi in Webform Template 6

Implements hook_nodeapi().

File

./webform_template.module, line 86

Code

function webform_template_nodeapi($node, $op) {
  switch ($op) {
    case 'insert':
      _webform_template_attach($node);
      break;
    case 'update':
      _webform_template_attach($node, 'delete');
      break;
  }
}