You are here

function biblio_get_notifiers_as_options in Bibliography Module 7.3

Helper function to return all notifiers as options for a select list.

Return value

array An array of biblio types for use in a field option list

File

./biblio.module, line 234
Maintains bibliographic lists.

Code

function biblio_get_notifiers_as_options() {
  $options = array();
  foreach (biblio_get_biblio_styles() as $style_name => $style) {
    $options[$style_name] = check_plain($style['title']);
  }
  return $options;
}