diff options
Diffstat (limited to 'views/default/friends/collections.php')
| -rw-r--r-- | views/default/friends/collections.php | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/views/default/friends/collections.php b/views/default/friends/collections.php deleted file mode 100644 index c785cd68e..000000000 --- a/views/default/friends/collections.php +++ /dev/null @@ -1,53 +0,0 @@ -<?php - - /** - * Elgg friends collections - * Lists a user's friends collections - * - * @package Elgg - * @subpackage Core - - * @author Curverider Ltd - - * @link http://elgg.org/ - * - * @uses $vars['collections'] The array of friends collections - */ - - if (!isset($friendspicker)) $friendspicker = 0; - - echo "<div class=\"contentWrapper\">"; - - if (is_array($vars['collections']) && sizeof($vars['collections'])) { - - echo "<ul id=\"friends_collections_accordian\">"; - - foreach($vars['collections'] as $collection) { - - $friendspicker++; - echo elgg_view('friends/collection',array('collection' => $collection, 'friendspicker' => $friendspicker)); - - } - - echo "</ul>"; - - } else { - - echo elgg_echo("friends:nocollections"); - - } - - echo "</div>"; - -?> - -<script> -$(document).ready(function(){ - -$('#friends_collections_accordian h2').click(function () { - $(this.parentNode).children("[class=friends_picker]").slideToggle("fast"); - //return false; -}); - -}); -</script>
\ No newline at end of file |
