Wednesday, 30 May 2012

Create Drupal 7 biblio nodes programatically

The biblio module for Drupal is almost certainly essential for anyone trying to use Drupal as a platform for doing science. It is a large module with lots of functionality but parts of it are pretty badly documented (that is: you can read through the code but just Googling might not throw up what you need).

 The first issue - how to create a biblio node programatically (that is: in code).

//$data is an array containing the fields I want to add to the new biblio node
function emonocot_biblio_create_node($data){
$node = new stdClass();
$node->type = 'biblio';
//This is the numeric value corresping to, e.g. Journal Article
$node->biblio_type = $data['biblio_type'];
node_object_prepare($node);
$node->title = $data['title'];
$node->biblio_short_title = $data['short_title'];
$node->biblio_year = $data['year'];
$node->biblio_section = $data['start_page'];
$node->biblio_volume = $data['volume'];
//Each author is an array - assign to node here but
//don't forget to call biblio_insert_contributors($node) later
foreach ($data['authors'] as $author){
$node->biblio_contributors[] = array(
'name' => $author,
'auth_category' => 1);
//above 1 is value corresponding to primary author
}
node_save($node);
//Node is saved - but will have problems with authors
//unless following code is run
require_once drupal_get_path('module', 'biblio') . '/includes/biblio.contributors.inc';
biblio_insert_contributors($node);
return $node;
}
view raw gistfile1.aw hosted with ❤ by GitHub

Some things to note:

1) You must set the type of the biblio you wish to make (Journal Article, Book chapter, etc) before the call to node_object_prepare().

2) To set the authors you must set $node->contributors as an array (like that above) and also call biblio_insert_contributors($node).

The above example sets only a fairly minimal  number of the biblio fields, but any of the biblio fields may be set using this method.

The field 'start page' in biblio entries is for some reason stored in the field biblio_section (that's not an error in the code above)l.

ShareThis

Copyright