You are here

function _biblio_bibtex_format_entry in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 modules/bibtexParse/biblio_bibtex.module \_biblio_bibtex_format_entry()
  2. 7 modules/bibtexParse/biblio_bibtex.module \_biblio_bibtex_format_entry()
1 call to _biblio_bibtex_format_entry()
_biblio_bibtex_export in modules/bibtexParse/biblio_bibtex.module
Export data in bibtex format.

File

modules/bibtexParse/biblio_bibtex.module, line 444

Code

function _biblio_bibtex_format_entry($key, $value) {
  return !empty($value) ? ",\n\t{$key} = {" . $value . "}" : '';
}