aboutsummaryrefslogtreecommitdiff
path: root/pages/friends/edit.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-09-30 23:23:18 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-09-30 23:23:18 +0000
commitda9858182b8ae223428dd802f3eeb7624dcd3645 (patch)
tree5c7a60b43264c1f4819bca34d6a416a140df1967 /pages/friends/edit.php
parent839dcba98a17b6d8b3fb63aec7744eda373ec5ff (diff)
downloadelgg-da9858182b8ae223428dd802f3eeb7624dcd3645.tar.gz
elgg-da9858182b8ae223428dd802f3eeb7624dcd3645.tar.bz2
Closes #2344 - moves friends pages into pages directory
git-svn-id: http://code.elgg.org/elgg/trunk@6989 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'pages/friends/edit.php')
-rw-r--r--pages/friends/edit.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/pages/friends/edit.php b/pages/friends/edit.php
new file mode 100644
index 000000000..c164a819e
--- /dev/null
+++ b/pages/friends/edit.php
@@ -0,0 +1,31 @@
+<?php
+/**
+ * Elgg add a collection 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:collectionedit');
+
+$content = elgg_view_title($title);
+
+//grab the collection id passed to the edit form
+$collection_id = get_input('collection');
+
+//get the full collection
+$collection = get_access_collection($collection_id);
+
+//get all members of the collection
+$collection_members = get_members_of_access_collection($collection_id);
+
+$content .= elgg_view('friends/forms/edit', array('collection' => $collection, 'collection_members' => $collection_members));
+
+$body = elgg_view_layout('one_column_with_sidebar', $content);
+
+page_draw($title, $body); \ No newline at end of file