You are here

function theme_biblio_ui_bundle_overview in Bibliography Module 7.3

Theme callback - display a small description of the biblio bundle.

1 theme call to theme_biblio_ui_bundle_overview()
biblio_ui_manage_bundles in modules/biblio_ui/biblio_ui.module
Display list of bundles the user can manage.

File

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

Code

function theme_biblio_ui_bundle_overview($variables) {
  $bundle = $variables['bundle'];
  $output = check_plain($bundle->name);
  $output .= ' <small>' . t('(Machine name: @type)', array(
    '@type' => $bundle->type,
  )) . '</small>';
  $output .= '<div class="description">' . filter_xss_admin($bundle->description) . '</div>';
  return $output;
}