blob: a98e80c3a37f555b6896edc1b4f205a09fb68aa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?php
/**
* Elgg friends collections
* Lists 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/
*
* @uses $vars['collections'] The array of friends collections
*/
if (is_array($vars['collections']) && sizeof($vars['collections'])) {
echo "<div class=\"expandall\"><p>expand all</p></div>";
echo "<ul id=\"friends_collections_accordian\">";
foreach($vars['collections'] as $collection) {
echo elgg_view('friends/collection',array('collection' => $collection));
}
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;
});
// global more info expand all/close all
$('div.expandall p').click(function () {
if (this.innerHTML == 'close all') {
$('div.friends_picker').slideUp("fast");
$('div.expandall p').html('expand all');
}
else {
$('div.friends_picker:hidden').slideDown("fast");
$('div.expandall p').html('close all');
}
});
});
</script>
|