]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Standardized files.
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Thu, 15 Oct 2009 22:40:00 +0000 (22:40 +0000)
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Thu, 15 Oct 2009 22:40:00 +0000 (22:40 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@3551 36083f99-b078-4883-b0ff-0f9b5a30f544

friends/add.php
friends/collections.php
friends/edit.php

index 60cbd28dba483af57b88df17832ede74761a7141..708461f60185f5b16652c4092b0cd6c13d5e4c96 100644 (file)
@@ -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
index 6c023f005a1144553cb9e98d70c65efb317c6577..bc62e0905d05e6f3d0e6338cc0d8943796a56037 100644 (file)
@@ -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
index cd9f37b9561e24f5721cd27218383fbc0cd507b8..e6cb83ce2a256e3d737728890c81a9ada8a58d90 100644 (file)
@@ -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