You are here

function biblio_ui_biblio_title in Bibliography Module 7.3

Title callback; Return the biblio title and the type.

1 string reference to 'biblio_ui_biblio_title'
biblio_ui_menu in modules/biblio_ui/biblio_ui.module
Implements hook_menu().

File

modules/biblio_ui/biblio_ui.module, line 276
Main functionality file for the biblio UI module.

Code

function biblio_ui_biblio_title(Biblio $biblio) {
  $type = biblio_types($biblio->type);
  $params = array(
    '@title' => $biblio->title,
    '@type' => $type->name,
  );
  return format_string('@title (@type)', $params);
}