You are here

function webform_translation_node_delete in Webform Translation 7

Implements hook_node_delete().

File

./webform_translation.module, line 224

Code

function webform_translation_node_delete($node) {
  db_delete('webform_component_translation')
    ->condition('nid', $node->nid)
    ->execute();
}