aboutsummaryrefslogtreecommitdiff
path: root/views/default/widgets/friends/content.php
blob: ec842a252739637795812bd98c0ff0d254fd8e6a (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
<?php
/**
 * Friend widget display view
 *
 */

// owner of the widget
$owner = $vars['entity']->getOwnerEntity();

// the number of friends to display
$num = (int) $vars['entity']->num_display;

// get the correct size
$size = $vars['entity']->icon_size;

if (elgg_instanceof($owner, 'user')) {
	$html = $owner->listFriends('', $num, array(
		'size' => $size,
		'gallery' => true,
	));
	if ($html) {
		echo $html;
	}
}