blob: c8c79f406c6d31b0b7afb970c83d46d325175a26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
/**
* Album river view
*
* @author Cash Costello
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
*/
$album = $vars['item']->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 = '<ul class="tidypics-river-list">';
foreach($images as $image) {
$attachments .= '<li class="tidypics-photo-item">';
$attachments .= elgg_view_entity_icon($image, 'tiny');
$attachments .= '</li>';
}
$attachments .= '</ul>';
}
}
echo elgg_view('river/elements/layout', array(
'item' => $vars['item'],
'attachments' => $attachments,
));
|