blob: 9cf0c58a6af1f0ddad87d8fdeaccca4aa09c31da (
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);
page_draw($title, $body);
|