You are here

function biblio_author_page in Bibliography Module 6.2

Same name and namespace in other branches
  1. 6 biblio.pages.inc \biblio_author_page()
  2. 7 includes/biblio.pages.inc \biblio_author_page()
  3. 7.2 includes/biblio.pages.inc \biblio_author_page()

Parameters

bool $filter: (optional)

1 string reference to 'biblio_author_page'
biblio_menu in ./biblio.module
Implements hook_menu().

File

includes/biblio.pages.inc, line 1278
Functions in the biblio module related to filtering and page generation.

Code

function biblio_author_page($filter = NULL) {
  $path = drupal_get_path('module', 'biblio');
  drupal_add_js($path . '/misc/biblio.highlight.js');
  $authors = _biblio_get_authors($filter);
  return _biblio_format_author_page($filter, $authors);
}