blob: 98814c2441dc00c5107baae55385a8e152db8f68 (
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
|
<?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,
'list_type' => 'gallery',
'pagination' => false
));
if ($html) {
echo $html;
}
}
|