function biblio_style_cse_author_options in Bibliography Module 6
Same name and namespace in other branches
- 6.2 styles/biblio_style_cse.inc \biblio_style_cse_author_options()
- 7 styles/biblio_style_cse.inc \biblio_style_cse_author_options()
- 7.2 styles/biblio_style_cse.inc \biblio_style_cse_author_options()
Apply a bibliographic style to the node
Parameters
$node: An object containing the node data to render
$base: The base URL of the biblio module (defaults to /biblio)
$inline: A logical value indicating if this is being rendered within the Drupal framwork (FALSE) or we are just passing back the html (TRUE)
Return value
The styled biblio entry
1 call to biblio_style_cse_author_options()
File
- ./
biblio_style_cse.inc, line 28
Code
function biblio_style_cse_author_options() {
$author_options = array(
'BetweenAuthorsDelimStandard' => ', ',
//4
'BetweenAuthorsDelimLastAuthor' => ', ',
//5
'AuthorsInitialsDelimFirstAuthor' => ' ',
//7
'AuthorsInitialsDelimStandard' => ' ',
//8
'betweenInitialsDelim' => '',
//9
'initialsBeforeAuthorFirstAuthor' => FALSE,
//10
'initialsBeforeAuthorStandard' => FALSE,
//11
'shortenGivenNames' => TRUE,
//12
'numberOfAuthorsTriggeringEtAl' => 10,
//13
'includeNumberOfAuthors' => 10,
//14
'customStringAfterFirstAuthors' => ' et al.',
//15
'encodeHTML' => TRUE,
);
return $author_options;
}