The first issue - how to create a biblio node programatically (that is: in code).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//$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; | |
} |
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.