| 1 |
<?php |
<?php |
| 2 |
|
|
| 3 |
// $Id: biblio_style_cse.inc,v 1.17 2009/02/18 16:49:55 rhaschke Exp $ |
// $Id: biblio_style_cse.inc,v 1.18 2009/02/27 21:44:14 rjerome Exp $ |
| 4 |
/** |
/** |
| 5 |
* Get the style information |
* Get the style information |
| 6 |
* |
* |
| 50 |
|
|
| 51 |
if (empty($authors)) $authors = theme('biblio_format_authors', $node->biblio_contributors[5], $author_options, $inline); // if no authors substitute corp author if available |
if (empty($authors)) $authors = theme('biblio_format_authors', $node->biblio_contributors[5], $author_options, $inline); // if no authors substitute corp author if available |
| 52 |
if (empty($authors)) $authors = '[' . t('Anonymous') . ']'; // use anonymous if we still have nothing. |
if (empty($authors)) $authors = '[' . t('Anonymous') . ']'; // use anonymous if we still have nothing. |
| 53 |
|
if (!empty ($node->biblio_citekey)&&(variable_get('biblio_display_citation_key',0))) { |
| 54 |
|
$output .= '[' . check_plain($node->biblio_citekey) . '] '; |
| 55 |
|
} |
| 56 |
$output .= '<span class="biblio-authors">' . $authors . "</span>. \n"; |
$output .= '<span class="biblio-authors">' . $authors . "</span>. \n"; |
| 57 |
switch ($node->biblio_type) { |
switch ($node->biblio_type) { |
| 58 |
|
|