blob: 25ab98c4cea7f319074411c31f06c150ae850484 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* Elgg collections of friends
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*/
// 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);
page_draw($title, $body);
|