aboutsummaryrefslogtreecommitdiff
path: root/pages/friends/collections.php
blob: a37ba3a43b2d7c683b339b893c2931643ec37142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * Elgg collections of friends
 *
 * @package Elgg
 * @subpackage Core
 */

// You need to be logged in for this one
gatekeeper();

$title = elgg_echo('friends:collections');

$content = elgg_view_title($title);

$content .= elgg_view_access_collections(get_loggedin_userid());

$body = elgg_view_layout('one_column_with_sidebar', $content);

echo elgg_view_page($title, $body);