Browse Source

allowances made for missing content models

pull/653/head
ajstanley 8 years ago
parent
commit
448709c932
  1. 32
      islandora.module

32
islandora.module

@ -2175,22 +2175,24 @@ function islandora_islandora_get_breadcrumb_query_predicates(AbstractObject $obj
* Implements hook_islandora_overview_object(). * Implements hook_islandora_overview_object().
*/ */
function islandora_islandora_overview_object(AbstractObject $object) { function islandora_islandora_overview_object(AbstractObject $object) {
if (is_object($object)) {
$cmodels = $object->models; $cmodels = $object->models;
$rows = array(); $rows = array();
foreach ($cmodels as $cmodel) { foreach ($cmodels as $cmodel) {
if ($cmodel != 'fedora-system:FedoraObject-3.0') { if ($cmodel != 'fedora-system:FedoraObject-3.0') {
$o = islandora_object_load($cmodel); $o = islandora_object_load($cmodel);
if(is_object($o)) { if (is_object($o)) {
$rows[] = array(l($o->label, "islandora/object/{$o->id}")); $rows[] = array(l($o->label, "islandora/object/{$o->id}"));
} }
else {
$rows[] = array(t("@cmodel - (This content model is not in this Islandora repository.)", array('@cmodel' => $cmodel)));
} }
} }
$header = count($rows) > 1 ? t('Content Models') : t('Content Model');
$table = theme('table', array(
'header' => array($header),
'rows' => $rows,
'empty' => t('No Islandora content model associated with this object.')));
return array('cmodels' => $table);
} }
$header = count($rows) > 1 ? t('Content Models') : t('Content Model');
$table = theme('table', array(
'header' => array($header),
'rows' => $rows,
'empty' => t('No Islandora content model associated with this object.')));
return array('cmodels' => $table);
} }

Loading…
Cancel
Save