aboutsummaryrefslogtreecommitdiff
path: root/views/default/friends/collection.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-24 15:48:42 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-24 15:48:42 +0000
commit2b74ad2a779fc787644eb42ac4c0d072e3ae2c46 (patch)
tree36ba49eed80b6a9a96bf9562b249a10758597f45 /views/default/friends/collection.php
parentbcbdc8a7eda9a36166075ea7a07c99fadcab2b81 (diff)
downloadelgg-2b74ad2a779fc787644eb42ac4c0d072e3ae2c46.tar.gz
elgg-2b74ad2a779fc787644eb42ac4c0d072e3ae2c46.tar.bz2
Introducing the (still issue-packed) friend picker.
git-svn-id: https://code.elgg.org/elgg/trunk@1511 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/friends/collection.php')
-rw-r--r--views/default/friends/collection.php45
1 files changed, 45 insertions, 0 deletions
diff --git a/views/default/friends/collection.php b/views/default/friends/collection.php
new file mode 100644
index 000000000..4d08e5b06
--- /dev/null
+++ b/views/default/friends/collection.php
@@ -0,0 +1,45 @@
+<?php
+
+ /**
+ * Elgg friends collection
+ * Lists one of a user's friends collections
+ *
+ * @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/
+ *
+ * @see collections.php
+ *
+ * @uses $vars['collection'] The individual friends collection
+ */
+
+ $coll = $vars['collection'];
+
+ if (is_array($vars['collection']->entities)) {
+ $count = sizeof($vars['collection']->entities);
+ } else {
+ $count = 0;
+ }
+
+ echo "<li><h2>";
+
+ //as collections are private, check that the logged in user is the owner
+ if($coll->owner_guid == $_SESSION['user']->getGUID())
+ echo "<div class=\"friends_collections_controls\"> (<a href=\"" . $vars['url'] . "mod/friends/edit.php?collection={$coll->id}\">" . elgg_echo('edit') . "</a>) (<a href=\"" . $vars['url'] . "action/friends/deletecollection?collection={$coll->id}\">" . elgg_echo('delete') . "</a>)";
+
+ echo "</div>";
+ echo $coll->name;
+ echo " ({$count}) </h2>";
+
+ // Ben - this is where the friends picker view needs to go
+ if($members = $vars['collection']->entities){
+ echo elgg_view('friends/picker',array('entities' => $members));
+ }
+
+ // close friends_picker div and the accordian list item
+ echo "</li>";
+
+?> \ No newline at end of file