You are here

function biblio_keyword_page in Bibliography Module 6.2

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

Parameters

bool $filter: (optional)

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

File

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

Code

function biblio_keyword_page($filter = NULL) {
  $keywords = _biblio_get_keywords($filter);
  return _biblio_format_keyword_page($filter, $keywords);
}