aboutsummaryrefslogtreecommitdiff
path: root/views/default/widgets/friends/content.php
blob: 4c5ef5b4ad32fb91414994c457f315202c20aa9c (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;

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

}