You are here

function biblio_view_inline in Bibliography Module 5

Same name and namespace in other branches
  1. 6.2 includes/biblio.pages.inc \biblio_view_inline()
  2. 6 biblio.pages.inc \biblio_view_inline()
1 string reference to 'biblio_view_inline'
biblio_menu in ./biblio.module
Implementation of hook_menu().

File

./biblio.module, line 1874

Code

function biblio_view_inline(&$node) {
  $style = variable_get('biblio_style', 'classic');
  $base = variable_get('biblio_base', 'biblio');
  $output = '<div class="biblio-inline">';
  $output .= theme('biblio_long', $node, $base, $style);
  $output .= '</div>';
  print $output;
}