blob: 65fc66f62337a7cb4bb84f8d2273d2c765935992 (
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
26
27
28
29
30
31
32
|
<?php
/**
* Friends Files
*
* @package ElggFile
*/
$owner = elgg_get_page_owner_entity();
elgg_push_breadcrumb(elgg_echo('file'), "file/all");
elgg_push_breadcrumb($owner->name, "file/owner/$owner->username");
elgg_push_breadcrumb(elgg_echo('friends'));
$title = elgg_echo("file:friends", array($owner->name));
// offset is grabbed in list_user_friends_objects
$content = list_user_friends_objects($owner->guid, 'file', 10, false);
if (!$content) {
$content = elgg_echo("file:none");
}
$sidebar = file_get_type_cloud($owner->guid, true);
$body = elgg_view_layout('content', array(
'filter_context' => 'friends',
'content' => $content,
'title' => $title,
'sidebar' => $sidebar,
));
echo elgg_view_page($title, $body);
|