function biblio_update_keywords in Bibliography Module 7
Same name and namespace in other branches
- 6.2 includes/biblio.keywords.inc \biblio_update_keywords()
- 6 biblio.keywords.inc \biblio_update_keywords()
- 7.2 includes/biblio.keywords.inc \biblio_update_keywords()
Update the keyword database from the supplied node.
Parameters
object $node:
Return value
An array of keyword ID's
1 call to biblio_update_keywords()
- biblio_update in ./
biblio.module - Implements hook_update().
File
- includes/
biblio.keywords.inc, line 118 - Contains all keyword related functions.
Code
function biblio_update_keywords($node) {
$kids = biblio_insert_keywords($node, TRUE);
return $kids;
}