name, "file/owner/$owner->username"); elgg_push_breadcrumb(elgg_echo('friends')); elgg_register_title_button(); $title = elgg_echo("file:friends"); // 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);