You are here

function _biblio_feeds_set__contrib_target in Bibliography Module 7.2

Same name and namespace in other branches
  1. 7 includes/biblio.feeds.inc \_biblio_feeds_set__contrib_target()
1 string reference to '_biblio_feeds_set__contrib_target'
_biblio_feeds_processor_targets_alter in includes/biblio.feeds.inc

File

includes/biblio.feeds.inc, line 56

Code

function _biblio_feeds_set__contrib_target($source, $entity, $target, $value) {
  foreach ($value as $author) {
    $entity->biblio_contributors[] = array(
      'name' => $author,
      'auth_category' => 1,
    );
  }
}