aboutsummaryrefslogtreecommitdiff
path: root/friends
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-15 22:40:00 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-15 22:40:00 +0000
commit35ecb0f617d5a24eb7ed3e767cf323ef959a188f (patch)
tree7310883948e3a4b2df271c0a14fa846b24809cba /friends
parent6c45ead6c42592479c020efa640b8b3317e77b5a (diff)
downloadelgg-35ecb0f617d5a24eb7ed3e767cf323ef959a188f.tar.gz
elgg-35ecb0f617d5a24eb7ed3e767cf323ef959a188f.tar.bz2
Standardized files.
git-svn-id: http://code.elgg.org/elgg/trunk@3551 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'friends')
-rw-r--r--friends/add.php43
-rw-r--r--friends/collections.php40
-rw-r--r--friends/edit.php70
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 @@
<?php
+/**
+ * Elgg add a collection of friends
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
- /**
- * Elgg add a collection of friends
- *
- * @package Elgg
- * @subpackage Core
+// Start engine
+require_once(dirname(dirname((__FILE__))) . "/engine/start.php");
- * @author Curverider Ltd
+// You need to be logged in for this one
+gatekeeper();
- * @link http://elgg.org/
- */
+$area2 = elgg_view('friends/forms/edit', array(
+ 'friends' => 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 @@
<?php
+/**
+ * Elgg collections of friends
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
- /**
- * Elgg collections of friends
- *
- * @package Elgg
- * @subpackage Core
+// Start engine
+require_once(dirname(dirname((__FILE__))) . "/engine/start.php");
- * @author Curverider Ltd
+// You need to be logged in for this one
+gatekeeper();
- * @link http://elgg.org/
- */
+$area2 = elgg_view_access_collections($_SESSION['user']->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 @@
<?php
+/**
+ * Elgg add a collection of friends
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
- /**
- * Elgg add a collection 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();
-
- //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
+// 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