aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/profile_contents/friends.php
blob: 4fa290a7fb6c1b61789c0b36f59502ac09c840d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * Profile friends
 **/

$friends = list_entities_from_relationship('friend',$vars['entity']->getGUID(),false,'user','',0,10,false);
if(!$friends)
	$friends = "<p>This user has not made any friends yet.</p>";

?>
<div id="profile_content">
	<?php
		echo $friends;
	?>
</div>

<div id="profile_sidebar">
<?php
	echo elgg_view('profile/profile_ownerblock', array('smallicon' => true));
?>
</div>