blob: 60f7586ba10e9d44c1a9ddc85d324a09d1f5ca3c (
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 add a collection of friends
*
* @package Elgg.Core
* @subpackage Social.Collections
*/
// You need to be logged in for this one
gatekeeper();
$title = elgg_echo('friends:collections:add');
$content = elgg_view_title($title);
$content .= elgg_view_form('friends/collections/add', array(), array(
'friends' => get_user_friends(elgg_get_logged_in_user_guid(), "", 9999),
));
$body = elgg_view_layout('one_sidebar', array('content' => $content));
echo elgg_view_page(elgg_echo('friends:collections:add'), $body);
|