You are here

function _biblio_tagged_format_entry in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 modules/endnote/biblio_tagged.module \_biblio_tagged_format_entry()
  2. 7 modules/endnote/biblio_tagged.module \_biblio_tagged_format_entry()
1 call to _biblio_tagged_format_entry()
_biblio_tagged_export in modules/endnote/biblio_tagged.module

File

modules/endnote/biblio_tagged.module, line 348

Code

function _biblio_tagged_format_entry($key, $value) {
  $reverse = TRUE;
  $tag = _biblio_tagged_field_map($key, $reverse);
  if (!empty($tag)) {
    return "{$tag} " . trim($value) . "\r\n";
  }
}