getObjectEntity();
// Get images related to this batch
$images = elgg_get_entities_from_relationship(array(
'relationship' => 'belongs_to_batch',
'relationship_guid' => $batch->getGUID(),
'inverse_relationship' => true,
'type' => 'object',
'subtype' => 'image',
'offset' => 0,
));
$album = $batch->getContainerEntity();
if (!$album) {
// something went quite wrong - this batch has no associated album
return true;
}
$album_link = elgg_view('output/url', array(
'href' => $album->getURL(),
'text' => $album->getTitle(),
'is_trusted' => true,
));
$subject = $vars['item']->getSubjectEntity();
$subject_link = elgg_view('output/url', array(
'href' => $subject->getURL(),
'text' => $subject->name,
'class' => 'elgg-river-subject',
'is_trusted' => true,
));
if (count($images)) {
$attachments = '
';
foreach($images as $image) {
$attachments .= '- ';
$attachments .= elgg_view_entity_icon($image, 'tiny');
$attachments .= '
';
}
$attachments .= '
';
}
if (count($images) == 1) {
// View the comments of the image
$vars['item']->object_guid = $images[0]->guid;
$responses = elgg_view('river/elements/responses', $vars);
if ($responses) {
$responses = "$responses
";
}
$image_link = elgg_view('output/url', array(
'href' => $images[0]->getURL(),
'text' => $images[0]->getTitle(),
'is_trusted' => true,
));
$summary = elgg_echo('image:river:created', array($subject_link, $image_link, $album_link));
} else {
// View the comments of the album
$vars['item']->object_guid = $album->guid;
$responses = elgg_view('river/elements/responses', $vars);
if ($responses) {
$responses = "$responses
";
}
$summary = elgg_echo('image:river:created:multiple', array($subject_link, count($images), $album_link));
}
echo elgg_view('river/elements/layout', array(
'item' => $vars['item'],
'attachments' => $attachments,
'summary' => $summary
));