You are here

function theme_biblio_export_links in Bibliography Module 5

Same name and namespace in other branches
  1. 6.2 includes/biblio_theme.inc \theme_biblio_export_links()
  2. 6 biblio_theme.inc \theme_biblio_export_links()
  3. 7 includes/biblio_theme.inc \theme_biblio_export_links()
  4. 7.2 includes/biblio.theme.inc \theme_biblio_export_links()
1 theme call to theme_biblio_export_links()
theme_biblio_long in ./biblio.module

File

./biblio.module, line 2045

Code

function theme_biblio_export_links($nid) {

  //     $output .= '<br /><br />Export: ['.l(t("Tagged"),"$base/export/tagged/$node->nid").']';
  //     $output .= '['.l(t("XML"),"$base/export/xml/$node->nid").']';
  //     $output .= '['.l(t("BibTex"),"$base/export/bib/$node->nid").']<br /><br />';
  $base = variable_get('biblio_base', 'biblio');
  $links .= '<p /><ul class="tabs secondary">';
  $links .= '<li> ' . l(t("Tagged"), "{$base}/export/tagged/{$nid}") . '</li>';
  $links .= '<li> ' . l(t("XML"), "{$base}/export/xml/{$nid}") . '</li>';
  $links .= '<li> ' . l(t("BibTex"), "{$base}/export/bib/{$nid}") . '</li></ul>';
  return $links;
}