blob: fa7527f4dee2ab26728f6be1080019e16e09dde8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?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_access_collections(elgg_get_logged_in_user_guid());
$body = elgg_view_layout('content', array(
'filter' => false,
'content' => $content,
'title' => $title,
'context' => 'collections',
));
echo elgg_view_page($title, $body);
|