function biblio_handler_field_contributor::render in Bibliography Module 6
Same name and namespace in other branches
- 6.2 views/biblio_handler_field_contributor.inc \biblio_handler_field_contributor::render()
- 7 views/biblio_handler_field_contributor.inc \biblio_handler_field_contributor::render()
- 7.2 views/biblio_handler_field_contributor.inc \biblio_handler_field_contributor::render()
Overrides biblio_handler_field::render
File
- views/
biblio_handler_field_contributor.inc, line 69
Class
Code
function render($values) {
parent::set_label($values);
$vid = $values->{$this->field_alias};
if (!isset($this->items[$vid])) {
return NULL;
}
return theme('biblio_format_authors', $this->items[$vid], $this->author_options);
}