Silva allegoriarum totius sacrae scripturae.
| Autor principal: | |
|---|---|
| Formato: | Libro |
| Publicado: |
Lyon
1622
|
| Materias: | |
| Colección: | Banco de datos |
| Acervo: | Biblioteca del Colegio de San Francisco Javier. Tepotzotlán. Estado de México |
| Tema general: | Biblia |
| Notas: | Regular. San Pedro y San Pablo. |
Search Result 1
public function getThumbnail($size = 'small')
{
$biblioRaw = $this->getUniqueID();
$biblio = explode(':', $biblioRaw)[1] ?? null;
// ?? 1. KOHA COVER
if ($biblio) {
$kohaCover = "https://koha.adabi.org.mx/cgi-bin/koha/opac-image.pl?biblionumber={$biblio}&thumbnail=1";
return [
'src' => $kohaCover,
'type' => 'koha'
];
}
// ?? 2. fallback VuFind / Omeka / Solr
return parent::getThumbnail($size);
}
Search Result 2
public function getThumbnail($size = 'small')
{
$biblioRaw = $this->getUniqueID();
$biblio = explode(':', $biblioRaw)[1] ?? null;
// ?? 1. KOHA COVER
if ($biblio) {
$kohaCover = "https://koha.adabi.org.mx/cgi-bin/koha/opac-image.pl?biblionumber={$biblio}&thumbnail=1";
return [
'src' => $kohaCover,
'type' => 'koha'
];
}
// ?? 2. fallback VuFind / Omeka / Solr
return parent::getThumbnail($size);
}