getObjectEntity();
$album_river_view = elgg_get_plugin_setting('album_river_view', 'tidypics');
if ($album_river_view == "cover") {
$image = $album->getCoverImage();
if ($image) {
$attachments = elgg_view_entity_icon($image, 'tiny');
}
} else {
$images = $album->getImages(7);
if (count($images)) {
$attachments = '
';
foreach($images as $image) {
$attachments .= '- ';
$attachments .= elgg_view_entity_icon($image, 'tiny', array(
'link_class' => 'tidypics-lightbox elgg-lightbox-photo',
));
$attachments .= '
';
}
$attachments .= '
';
}
}
echo elgg_view('river/elements/layout', array(
'item' => $vars['item'],
'attachments' => $attachments,
));