You are here

function biblio_style_mla_author_options in Bibliography Module 7

Same name and namespace in other branches
  1. 5 biblio_style_mla.inc \biblio_style_mla_author_options()
  2. 6.2 styles/biblio_style_mla.inc \biblio_style_mla_author_options()
  3. 6 biblio_style_mla.inc \biblio_style_mla_author_options()
  4. 7.2 styles/biblio_style_mla.inc \biblio_style_mla_author_options()
1 call to biblio_style_mla_author_options()
biblio_style_mla in styles/biblio_style_mla.inc
Apply a bibliographic style to the node.

File

styles/biblio_style_mla.inc, line 30
MLA style.

Code

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