aboutsummaryrefslogtreecommitdiff
path: root/views/default/friends/collection.php
blob: a9f2a392f8e27389c6d90a963ea7500e0eed9339 (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
<?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']->members);
			} 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'] . "action/friends/deletecollection?collection={$coll->id}\" class=\"delete_collection\"><img src=\"" . $vars['url'] ."_graphics/icon_customise_remove.gif\"/></a>";
        	    
			echo "</div>";
			echo $coll->name;
			echo " ({$count}) </h2>";
        	
        	// individual collection panels
        	if($friends = $vars['collection']->entities){
        		$members = $vars['collection']->members;
				echo elgg_view('friends/picker',array('entities' => $friends, 'value' => $members));
    	    }
    	    
    	    // close friends_picker div and the accordian list item
    	    echo "</li>";

?>