blob: 9caa44b36efeabdea1f355002c5336267b43943a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/**
* Elgg river image
*
* Displayed next to the body of each river item
*
* @uses $vars['item']
*/
$subject = $vars['item']->getSubjectEntity();
echo elgg_view_entity_icon($subject, 'small');
|