aboutsummaryrefslogtreecommitdiff
path: root/views/default/core/friends/collections.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/core/friends/collections.php')
-rw-r--r--views/default/core/friends/collections.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/views/default/core/friends/collections.php b/views/default/core/friends/collections.php
new file mode 100644
index 000000000..6554059b1
--- /dev/null
+++ b/views/default/core/friends/collections.php
@@ -0,0 +1,40 @@
+<?php
+/**
+ * Elgg friends collections
+ * Lists a user's friends collections
+ *
+ * @package Elgg
+ * @subpackage Core
+ *
+ * @uses $vars['collections'] The array of friends collections
+ */
+
+if (!isset($friendspicker)) {
+ $friendspicker = 0;
+}
+
+
+if (is_array($vars['collections']) && sizeof($vars['collections'])) {
+ echo "<ul id=\"friends_collections_accordian\">";
+
+ foreach($vars['collections'] as $collection) {
+ $friendspicker++;
+ echo elgg_view('core/friends/collection', array('collection' => $collection, 'friendspicker' => $friendspicker));
+ }
+
+ echo "</ul>";
+
+} else {
+ echo elgg_echo("friends:nocollections");
+}
+
+?>
+
+<script>
+$(document).ready(function(){
+ $('#friends_collections_accordian h2').click(function () {
+ $(this.parentNode).children("[class=friends-picker]").slideToggle("fast");
+ //return false;
+ });
+});
+</script>