aboutsummaryrefslogtreecommitdiff
path: root/views/default/river/item.php
blob: 388c0a79b11f2447954db577fcf3e256b5c1290e (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
$item = $vars['item'];

$vars = array(
	'image' => elgg_view('core/river/image', array('item' => $item)),
	'body' => elgg_view('core/river/body', array('item' => $item)),
	'image_alt' => elgg_view('core/river/controls', array('item' => $item)),
	'class' => 'elgg-river-item',
);

echo elgg_view('layout/objects/image_block', $vars);