View source
<?php
function biblio_style_mla_info() {
return array(
'mla' => 'Modern Language Association (MLA)',
);
}
function biblio_style_mla_author_options() {
$author_options = array(
'BetweenAuthorsDelimStandard' => ', ',
'BetweenAuthorsDelimLastAuthor' => ', and ',
'AuthorsInitialsDelimFirstAuthor' => ', ',
'AuthorsInitialsDelimStandard' => ' ',
'betweenInitialsDelim' => '. ',
'initialsBeforeAuthorFirstAuthor' => FALSE,
'initialsBeforeAuthorStandard' => TRUE,
'shortenGivenNames' => FALSE,
'numberOfAuthorsTriggeringEtAl' => 3,
'includeNumberOfAuthors' => 1,
'customStringAfterFirstAuthors' => ', et al.',
'encodeHTML' => TRUE,
);
return $author_options;
}
function biblio_style_mla($node) {
module_load_include('inc', 'biblio', '/includes/biblio.contributors');
$output = $authors = $editor = '';
$author_options = biblio_style_mla_author_options();
$primary_authors = biblio_get_contributor_category($node->biblio_contributors, 1);
$editors = biblio_get_contributor_category($node->biblio_contributors, 2);
if (!empty($primary_authors)) {
$authors = theme('biblio_format_authors', array(
'contributors' => $primary_authors,
'options' => $author_options,
));
}
if (!empty($node->biblio_citekey) && variable_get('biblio_display_citation_key', 0)) {
$output .= '[' . check_plain($node->biblio_citekey) . '] ';
}
switch ($node->biblio_type) {
case 102:
case 105:
case 106:
if (!empty($authors)) {
$output .= '<span class="biblio-authors">';
$output .= $authors;
if (!preg_match("/\\. *\$/", $authors)) {
$output .= ".";
}
$output .= '</span>';
}
if (!empty($node->title)) {
if (!empty($authors)) {
$output .= " ";
}
$output .= '"';
$output .= '<span class="biblio-title-mla">';
$url = biblio_get_title_url_info($node);
$output .= l($node->title, $url['link'], $url['options']);
$output .= "</span>";
if (!preg_match("/[?!.]\$/", $node->title)) {
$output .= ".";
}
$output .= '"';
}
if (!empty($node->biblio_alternate_title)) {
$output .= " " . '<i>' . $node->biblio_alternate_title . '</i>';
}
elseif (!empty($node->biblio_secondary_title)) {
$output .= " " . '<i>' . $node->biblio_secondary_title . '</i>';
}
if (!empty($node->biblio_volume)) {
if (!empty($node->biblio_alternate_title) || !empty($node->biblio_secondary_title)) {
$output .= ".";
}
$output .= " " . $node->biblio_volume;
}
if (!empty($node->biblio_issue)) {
$output .= "." . $node->biblio_issue;
}
if (!empty($node->biblio_year)) {
$output .= " (" . $node->biblio_year . ")";
}
if (FALSE) {
$today = date("j M. Y");
if (!empty($node->online_citation)) {
if (!empty($node->biblio_volume) || !empty($node->biblio_issue) || !empty($node->biblio_alternate_title) || !empty($node->biblio_secondary_title)) {
$output .= ":";
}
$output .= " " . $node->online_citation;
}
if (!empty($node->doi)) {
if (!empty($node->online_citation) or empty($node->online_citation) and !empty($node->biblio_volume) || !empty($node->biblio_issue) || !empty($node->biblio_alternate_title) || !empty($node->biblio_secondary_title)) {
$output .= ".";
}
if ($encodeHTML) {
$output .= " " . $today . encodeHTML(" <http://dx.doi.org/" . $node->doi . ">");
}
else {
$output .= " " . $today . " <http://dx.doi.org/" . $node->doi . ">";
}
}
elseif (!empty($node->url)) {
if (!empty($node->online_citation) or empty($node->online_citation) and !empty($node->biblio_volume) || !empty($node->biblio_issue) || !empty($node->biblio_alternate_title) || !empty($node->biblio_secondary_title)) {
$output .= ".";
}
if ($encodeHTML) {
$output .= " " . $today . encodeHTML(" <" . $node->url . ">");
}
else {
$output .= " " . $today . " <" . $node->url . ">";
}
}
}
else {
if (!empty($node->biblio_pages)) {
if (!empty($node->biblio_year) || !empty($node->biblio_volume) || !empty($node->biblio_issue) || !empty(${$node}->biblio_alternate_title) || !empty($node->biblio_secondary_title)) {
$output .= ": ";
}
$output .= theme('biblio_page_number', array(
'orig_page_info' => $node->biblio_pages,
));
}
}
if (!preg_match("/\\. *\$/", $output)) {
$output .= ".";
}
break;
case 101:
case 103:
if (!empty($authors)) {
$output .= '<span class="biblio-authors">';
$output .= $authors;
if (!preg_match("/\\. *\$/", $authors)) {
$output .= ".";
}
$output .= '</span>';
}
if (!empty($node->title)) {
if (!empty($authors)) {
$output .= " ";
}
$output .= '<span class="biblio-title-mla">';
$url = biblio_get_title_url_info($node);
$output .= l($node->title, $url['link'], $url['options']);
$output .= "</span>";
if (!preg_match("/[?!.]\$/", $node->title)) {
$output .= ".";
}
$output .= '"';
}
$publication = preg_replace("/[ \r\n]*\\(Eds?:[^\\)\r\n]*\\)/", "", $node->biblio_secondary_title);
if (!empty($publication)) {
$output .= " <i>{$publication}</i>";
}
if (!empty($editors)) {
$editor_options = array(
'BetweenAuthorsDelimStandard' => ', ',
'BetweenAuthorsDelimLastAuthor' => ', and ',
'AuthorsInitialsDelimFirstAuthor' => ' ',
'AuthorsInitialsDelimStandard' => ' ',
'betweenInitialsDelim' => '. ',
'initialsBeforeAuthorFirstAuthor' => TRUE,
'initialsBeforeAuthorStandard' => TRUE,
'shortenGivenNames' => FALSE,
'numberOfAuthorsTriggeringEtAl' => 3,
'includeNumberOfAuthors' => 1,
'customStringAfterFirstAuthors' => ', et al.',
'encodeHTML' => TRUE,
);
$editor = theme('biblio_format_authors', array(
'contributors' => $editors,
'options' => $editor_options,
));
_period_if_needed($output);
if (count($editors) > 1) {
$output .= " Eds. " . $editor;
}
else {
$output .= " Ed. " . $editor;
}
}
if (!empty($node->biblio_edition) && !preg_match("/^(1|1st|first|one)( ed\\.?| edition)?\$/i", $node->biblio_edition)) {
_period_if_needed($output);
if (preg_match("/^\\d{1,3}\$/", $node->biblio_edition)) {
if ($node->biblio_edition == "2") {
$editionSuffix = "nd";
}
elseif ($node->biblio_edition == "3") {
$editionSuffix = "rd";
}
else {
$editionSuffix = "th";
}
}
else {
$editionSuffix = "";
}
if (preg_match("/^(Rev\\.?|Revised)( ed\\.?| edition)?\$/i", $node->biblio_edition)) {
$node->biblio_edition = "Rev.";
}
elseif (preg_match("/^(Abr\\.?|Abridged)( ed\\.?| edition)?\$/i", $node->biblio_edition)) {
$node->biblio_edition = "Abr.";
}
if (!preg_match("/( ed\\.?| edition)\$/i", $node->biblio_edition)) {
$editionSuffix .= " ed.";
}
$output .= " " . $node->biblio_edition . $editionSuffix;
}
if (!empty($node->biblio_volume)) {
_period_if_needed($output);
$output .= " Vol. " . $node->biblio_volume;
}
if (!empty($node->biblio_alternate_title) || !empty($node->biblio_tertiary_title)) {
_period_if_needed($output);
$output .= " ";
if (!empty($node->biblio_alternate_title)) {
$output .= $node->biblio_alternate_title;
}
elseif (!empty($node->biblio_tertiary_title)) {
$output .= $node->biblio_tertiary_title;
}
if (!empty($node->biblio_volume) || !empty($node->biblio_issue)) {
$output .= ", ";
}
if (!empty($node->biblio_volume)) {
$output .= $node->biblio_volume;
}
if (!empty($node->biblio_issue)) {
$output .= "." . $node->biblio_issue;
}
}
_period_if_needed($output);
if (!empty($node->biblio_place_published)) {
$output .= " " . $node->biblio_place_published;
}
if (!empty($node->biblio_publisher)) {
if (!empty($node->biblio_place_published)) {
$output .= ":";
}
$output .= " " . $node->biblio_publisher . ", ";
}
if (!empty($node->biblio_year)) {
$output .= " " . $node->biblio_year . ". ";
}
_period_if_needed($output);
if (!empty($node->biblio_pages)) {
$output .= theme('biblio_page_number', array(
'orig_page_info' => $node->biblio_pages,
));
}
_period_if_needed($output);
break;
default:
if (!empty($authors)) {
$output .= '<span class="biblio-authors">';
$output .= $authors;
if (!preg_match("/\\.*\$/", $authors)) {
$output .= ".";
}
$output .= '</span>';
}
if (!empty($node->title)) {
$url = biblio_get_title_url_info($node);
if (!empty($authors)) {
$output .= " ";
}
if (!empty($node->thesis)) {
$output .= '<span class="biblio-title-mla">';
$output .= '"' . l($node->title, $url['link'], $url['options']);
$output .= '</span>';
if (!preg_match("/[?!.]\$/", $node->title)) {
$output .= ".";
}
$output .= '"';
}
else {
$output .= '<i>';
}
$output .= '<span class="biblio-title-mla">';
$output .= l($node->title, $url['link'], $url['options']);
$output .= '</span>';
$output .= '</i>';
}
if (!empty($editors)) {
$editor_options = array(
'BetweenAuthorsDelimStandard' => ', ',
'BetweenAuthorsDelimLastAuthor' => ', and ',
'AuthorsInitialsDelimFirstAuthor' => ' ',
'AuthorsInitialsDelimStandard' => ' ',
'betweenInitialsDelim' => '. ',
'initialsBeforeAuthorFirstAuthor' => TRUE,
'initialsBeforeAuthorStandard' => TRUE,
'shortenGivenNames' => FALSE,
'numberOfAuthorsTriggeringEtAl' => 3,
'includeNumberOfAuthors' => 1,
'customStringAfterFirstAuthors' => ', et al.',
'encodeHTML' => TRUE,
);
$editor = theme('biblio_format_authors', array(
'contributors' => $editors,
'options' => $editor_options,
));
_period_if_needed($output);
if (count($editors) > 1) {
$output .= " Eds. " . $editor;
}
else {
$output .= " Ed. " . $editor;
}
}
if (!empty($node->biblio_edition) && !preg_match("/^(1|1st|first|one)( ed\\.?| edition)?\$/i", $node->biblio_edition)) {
_period_if_needed($output);
if (preg_match("/^\\d{1,3}\$/", $node->biblio_edition)) {
if ($node->biblio_edition == "2") {
$editionSuffix = "nd";
}
elseif ($node->biblio_edition == "3") {
$editionSuffix = "rd";
}
else {
$editionSuffix = "th";
}
}
else {
$editionSuffix = "";
}
if (preg_match("/^(Rev\\.?|Revised)( ed\\.?| edition)?\$/i", $node->biblio_edition)) {
$node->biblio_edition = "Rev.";
}
elseif (preg_match("/^(Abr\\.?|Abridged)( ed\\.?| edition)?\$/i", $node->biblio_edition)) {
$node->biblio_edition = "Abr.";
}
if (!preg_match("/( ed\\.?| edition)\$/i", $node->biblio_edition)) {
$editionSuffix .= " ed.";
}
$output .= " " . $node->biblio_edition . $editionSuffix;
}
if (!empty($node->biblio_volume)) {
_period_if_needed($output);
$output .= " Vol. " . $node->biblio_volume;
}
if (!empty($node->biblio_alternate_title) or !empty($node->biblio_secondary_title)) {
_period_if_needed($output);
$output .= " ";
if (!empty($node->biblio_alternate_title)) {
$output .= $node->biblio_alternate_title;
}
elseif (!empty($node->biblio_secondary_title)) {
$output .= $node->biblio_secondary_title;
}
if (!empty($node->biblio_volume) || !empty($node->biblio_issue)) {
$output .= ", ";
}
if (!empty($node->biblio_volume)) {
$output .= $node->biblio_volume;
}
if (!empty($node->biblio_issue)) {
$output .= "." . $node->biblio_issue;
}
}
if (!empty($node->thesis)) {
_period_if_needed($output);
$output .= " " . $node->thesis;
$output .= ", " . $node->biblio_publisher;
}
else {
_period_if_needed($output);
if (!empty($node->biblio_place_published)) {
$output .= " " . $node->biblio_place_published;
}
if (!empty($node->biblio_publisher)) {
if (!empty($node->biblio_place_published)) {
$output .= ":";
}
$output .= " " . $node->biblio_publisher;
}
}
if (!empty($node->biblio_year)) {
$output .= ", " . $node->biblio_year;
}
if (isset($node->online_publication) && $node->online_publication == "yes") {
$today = date("j M. Y");
if (!empty($node->online_citation)) {
if (!preg_match("/\\. *\$/", $output)) {
$output .= ".";
}
$output .= " " . $node->online_citation;
}
if (!empty($node->doi)) {
if (!preg_match("/\\. *\$/", $output)) {
$output .= ".";
}
if ($encodeHTML) {
$output .= " " . $today . encodeHTML(" <http://dx.doi.org/" . $node->doi . ">");
}
else {
$output .= " " . $today . " <http://dx.doi.org/" . $node->doi . ">";
}
}
elseif (!empty($node->url)) {
if (!preg_match("/\\. *\$/", $output)) {
$output .= ".";
}
if ($encodeHTML) {
$output .= " " . $today . encodeHTML(" <" . $node->url . ">");
}
else {
$output .= " " . $today . " <" . $node->url . ">";
}
}
}
if (!preg_match("/\\. *\$/", $output)) {
$output .= ".";
}
break;
}
return filter_xss($output, biblio_get_allowed_tags());
}
function _period_if_needed(&$output) {
if (!preg_match("/[?!.][ \"" . '<\\/i>' . "]*\$/", $output)) {
$output .= ".";
}
}