private function BiblioStyleBibtex::formatSchool in Bibliography Module 7.3
Rendering the school property.
Parameters
EntityMetadataWrapper $wrapper: The wrapper object.
$key: The property name which holds the value of the field.
Return value
The value of the property.
File
- plugins/
biblio_style/ bibtex/ BiblioStyleBibtex.class.php, line 386 - BibTeX style.
Class
- BiblioStyleBibtex
- @file BibTeX style.
Code
private function formatSchool(EntityMetadataWrapper $wrapper, $key) {
return $this->biblio->type == 'thesis' ? $wrapper->biblio_publisher
->value() : NULL;
}