aboutsummaryrefslogtreecommitdiff
path: root/friends
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-31 14:05:54 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-31 14:05:54 +0000
commit7e8a3d71ca771f077edea92e3e73685d30ca7aba (patch)
treefe436a4e09c602eaa6f61ff6de1a22aa6e9e7e2f /friends
parentc42862e15c82d0ffbb45d3bdc2bcfcea2d0c75f6 (diff)
downloadelgg-7e8a3d71ca771f077edea92e3e73685d30ca7aba.tar.gz
elgg-7e8a3d71ca771f077edea92e3e73685d30ca7aba.tar.bz2
Friends collections are now fully part of the main core
git-svn-id: https://code.elgg.org/elgg/trunk@1630 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'friends')
-rw-r--r--friends/add.php28
-rw-r--r--friends/collections.php28
-rw-r--r--friends/edit.php39
3 files changed, 95 insertions, 0 deletions
diff --git a/friends/add.php b/friends/add.php
new file mode 100644
index 000000000..93dab025e
--- /dev/null
+++ b/friends/add.php
@@ -0,0 +1,28 @@
+<?php
+
+ /**
+ * Elgg add a collection of friends
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @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('friends/forms/edit', array('friends' => get_user_friends($_SESSION['user']->getGUID(),"",9999)));
+
+ // Format page
+ $body = elgg_view_layout('two_column_left_sidebar','', elgg_view_title(elgg_echo('friends:collections:add')) . $area2);
+
+ // Draw it
+ echo page_draw(elgg_echo('friends:collections:add'),$body);
+
+?> \ No newline at end of file
diff --git a/friends/collections.php b/friends/collections.php
new file mode 100644
index 000000000..0467a6b42
--- /dev/null
+++ b/friends/collections.php
@@ -0,0 +1,28 @@
+<?php
+
+ /**
+ * Elgg collections of friends
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @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('two_column_left_sidebar', '', elgg_view_title(elgg_echo('friends:collections')) . $area2);
+
+ // Draw it
+ echo page_draw(elgg_echo('friends:collections'),$body);
+
+?> \ No newline at end of file
diff --git a/friends/edit.php b/friends/edit.php
new file mode 100644
index 000000000..48840849d
--- /dev/null
+++ b/friends/edit.php
@@ -0,0 +1,39 @@
+<?php
+
+ /**
+ * Elgg add a collection of friends
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ // Start engine
+ require_once(dirname(dirname((__FILE__))) . "/engine/start.php");
+
+ // You need to be logged in for this one
+ gatekeeper();
+
+ //set the title
+ $area1 = elgg_view_title(elgg_echo('friends:collectionedit'), false);
+
+ //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);
+
+ $area2 = elgg_view('friends/forms/edit', array('collection' => $collection, 'collection_members' => $collection_members));
+
+ // Format page
+ $body = elgg_view_layout('two_column_left_sidebar',$area1. $area2);
+
+ // Draw it
+ echo page_draw(elgg_echo('friends:add'),$body);
+
+?> \ No newline at end of file