From 35ecb0f617d5a24eb7ed3e767cf323ef959a188f Mon Sep 17 00:00:00 2001 From: brettp Date: Thu, 15 Oct 2009 22:40:00 +0000 Subject: Standardized files. git-svn-id: http://code.elgg.org/elgg/trunk@3551 36083f99-b078-4883-b0ff-0f9b5a30f544 --- friends/add.php | 43 +++++++++++++++--------------- friends/collections.php | 40 +++++++++++++--------------- friends/edit.php | 70 +++++++++++++++++++++++-------------------------- 3 files changed, 72 insertions(+), 81 deletions(-) diff --git a/friends/add.php b/friends/add.php index 60cbd28db..708461f60 100644 --- a/friends/add.php +++ b/friends/add.php @@ -1,28 +1,27 @@ get_user_friends($_SESSION['user']->getGUID(), "", 9999) + ) +); - // 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 - page_draw(elgg_echo('friends:collections:add'),$body); +// Format page +$body = elgg_view_layout('two_column_left_sidebar', '', + elgg_view_title(elgg_echo('friends:collections:add')) . $area2); -?> \ No newline at end of file +// Draw it +page_draw(elgg_echo('friends:collections:add'),$body); \ No newline at end of file diff --git a/friends/collections.php b/friends/collections.php index 6c023f005..bc62e0905 100644 --- a/friends/collections.php +++ b/friends/collections.php @@ -1,28 +1,24 @@ getGUID()); - // 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 - page_draw(elgg_echo('friends:collections'),$body); +// Format page +$body = elgg_view_layout('two_column_left_sidebar', '', + elgg_view_title(elgg_echo('friends:collections')) . $area2); -?> \ No newline at end of file +// Draw it +page_draw(elgg_echo('friends:collections'),$body); \ No newline at end of file diff --git a/friends/edit.php b/friends/edit.php index cd9f37b95..e6cb83ce2 100644 --- a/friends/edit.php +++ b/friends/edit.php @@ -1,39 +1,35 @@ $collection, 'collection_members' => $collection_members)); - - // Format page - $body = elgg_view_layout('two_column_left_sidebar',$area1. $area2); - - // Draw it - page_draw(elgg_echo('friends:add'),$body); - -?> \ No newline at end of file +// 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 +page_draw(elgg_echo('friends:add'),$body); \ No newline at end of file -- cgit v1.2.3