aboutsummaryrefslogtreecommitdiff
path: root/friends/collections.php
blob: e98f4b6a62107d4181c91b0bf3718bc153b55dae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/**
 * Elgg collections of friends
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 */

// Start engine
require_once(dirname(dirname((__FILE__))) . "/engine/start.php");

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

$area2 = elgg_view_access_collections($_SESSION['user']->getGUID());

// Format page
$body = elgg_view_layout('one_column_with_sidebar', '',
	elgg_view_title(elgg_echo('friends:collections')) . $area2);

// Draw it
page_draw(elgg_echo('friends:collections'),$body);