function _bibtex_format_entry in Bibliography Module 6
1 call to _bibtex_format_entry()
- biblio_bibtex_export in ./
biblio.import.export.inc - Export data in bibtex format.
File
- ./
biblio.import.export.inc, line 857 - Functions that are used to import and export biblio data.
Code
function _bibtex_format_entry($key, $value) {
return !empty($value) ? ",\n\t{$key} = {" . $value . "}" : '';
}