Browse Source

Adding pid to object_mapper utility

pull/641/head
MorganDawe 9 years ago
parent
commit
61cc96d1bf
  1. 2
      theme/theme.inc

2
theme/theme.inc

@ -289,6 +289,7 @@ function islandora_objects_object_mapper($object_id) {
'link' => l($o->label, $url, $link_options), 'link' => l($o->label, $url, $link_options),
'thumb' => l($img, $url, $link_options), 'thumb' => l($img, $url, $link_options),
'description' => $description, 'description' => $description,
'pid' => $o->id,
); );
} }
else { else {
@ -299,6 +300,7 @@ function islandora_objects_object_mapper($object_id) {
'link' => l(t('(Unknown)'), $url, $link_options), 'link' => l(t('(Unknown)'), $url, $link_options),
'thumb' => '', 'thumb' => '',
'description' => '', 'description' => '',
'pid' => $object_id,
); );
} }
} }

Loading…
Cancel
Save