You are here

function biblio_delete_keywords in Bibliography Module 6

Same name and namespace in other branches
  1. 6.2 includes/biblio.keywords.inc \biblio_delete_keywords()
  2. 7 includes/biblio.keywords.inc \biblio_delete_keywords()
  3. 7.2 includes/biblio.keywords.inc \biblio_delete_keywords()

Parameters

unknown_type $node:

Return value

unknown_type

1 call to biblio_delete_keywords()
biblio_delete in ./biblio.module
Implementation of hook_delete().

File

./biblio.keywords.inc, line 63

Code

function biblio_delete_keywords($node) {
  db_query('DELETE FROM {biblio_keyword} WHERE nid = %d', $node->nid);
  $count = db_affected_rows();
  return $count;
}