You are here

function biblio_update_keywords in Bibliography Module 7.2

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

Update the keyword database from the supplied node

Parameters

stdClass $node:

Return value

An array of keyword ID's

1 call to biblio_update_keywords()
biblio_update in ./biblio.module
Implementation of hook_update().

File

includes/biblio.keywords.inc, line 103

Code

function biblio_update_keywords($node) {
  $kids = biblio_insert_keywords($node, TRUE);
  return $kids;
}