function biblio_bibtex_link in Bibliography Module 6.2
File
- modules/
bibtexParse/ biblio_bibtex.module, line 109
Code
function biblio_bibtex_link($type, $node = NULL, $teaser = FALSE) {
if ($type != 'node' || $node->type != 'biblio') {
return;
}
return biblio_bibtex_biblio_export_link($node->nid);
}