aboutsummaryrefslogtreecommitdiff
path: root/views/default/friends/tablelist.php
blob: 716e1cb35d276e8b3f3a97e93166d838ca0c8db9 (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
60
<?php

	/**
	 * Elgg friends picker
	 * Lists the friends picker
	 * 
	 * @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['entities'] The array of ElggUser objects
	 */

		if (is_array($vars['entities'])) {
			
?>

	<table>
		<tr>
<?php
			
			$column = 0;
			foreach($vars['entities'] as $entity) {
				
?>

			<td style="width:25px">
				<?php echo elgg_view("profile/icon",array('entity' => $entity, 'size' => 'tiny')); ?> 
			</td>
			<td style="width: 300px; padding: 5px;">
<?php

					echo $entity->name;
				
?>
			</td>

<?php
				
				$column++;
				if ($column > 1) {
					echo "</tr><tr>";
					$column = 0;
				}
				
			}
			if ($column > 0) echo "</tr>";
			
?>

	</table>

<?php
			
		}

?>