blob: 8b3171405c589a5411244b11da13e89b5104275a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* Profile friends
*/
$options = array(
'relationship_guid' => $vars['entity']->getGUID(),
'relationship' => 'friend',
'inverse_relationship' => false,
'full_view' => false,
);
$friends = elgg_list_entities_from_relationship($options);
if (!$friends) {
$friends = '<p>' . elgg_echo('profile:no_friends') . '</p>';
}
echo $friends;
|