You are here

function _biblio_ris_format_entry in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 modules/RIS/biblio_ris.module \_biblio_ris_format_entry()
  2. 7 modules/RIS/biblio_ris.module \_biblio_ris_format_entry()
1 call to _biblio_ris_format_entry()
_biblio_ris_export in modules/RIS/biblio_ris.module

File

modules/RIS/biblio_ris.module, line 421

Code

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