You are here

function biblio_style_classic_author_options in Bibliography Module 6.2

Same name and namespace in other branches
  1. 6 biblio_style_classic.inc \biblio_style_classic_author_options()
  2. 7 styles/biblio_style_classic.inc \biblio_style_classic_author_options()
  3. 7.2 styles/biblio_style_classic.inc \biblio_style_classic_author_options()

Return value

array An array of author styling options for the classic style.

1 call to biblio_style_classic_author_options()
biblio_style_classic in styles/biblio_style_classic.inc
Apply a bibliographic style to the node

File

styles/biblio_style_classic.inc, line 26
Functions for rendering biblio item information in classic style.

Code

function biblio_style_classic_author_options() {
  $author_options = array(
    'BetweenAuthorsDelimStandard' => ', ',
    //  4
    'BetweenAuthorsDelimLastAuthor' => ', and ',
    //  5
    'AuthorsInitialsDelimFirstAuthor' => ', ',
    //  7
    'AuthorsInitialsDelimStandard' => ' ',
    //  8
    'betweenInitialsDelim' => '. ',
    //  9
    'initialsBeforeAuthorFirstAuthor' => FALSE,
    // 10
    'initialsBeforeAuthorStandard' => FALSE,
    // 11
    'shortenGivenNames' => FALSE,
    // 12
    'numberOfAuthorsTriggeringEtAl' => 10,
    // 13
    'includeNumberOfAuthors' => 10,
    // 14
    'customStringAfterFirstAuthors' => ', et al.',
    // 15
    'encodeHTML' => TRUE,
  );
  return $author_options;
}