Browse Source

coder

pull/653/head
ajstanley 8 years ago
parent
commit
715f4d2c3b
  1. 12
      islandora.module

12
islandora.module

@ -2190,11 +2190,11 @@ function islandora_islandora_overview_object(AbstractObject $object) {
} }
$header = format_plural(count($rows), 'Content Model', 'Content Models'); $header = format_plural(count($rows), 'Content Model', 'Content Models');
$table = array( $table = array(
'#type' => 'markup', '#type' => 'markup',
'#theme' => 'table', '#theme' => 'table',
'#header' => array($header), '#header' => array($header),
'#rows' => $rows, '#rows' => $rows,
'#empty' => t('No Islandora content model associated with this object.'), '#empty' => t('No Islandora content model associated with this object.')
); );
return array('cmodels' => $table); return array('cmodels' => $table);
} }

Loading…
Cancel
Save