aboutsummaryrefslogtreecommitdiff
path: root/views/default/core/friends/tablelist.php
blob: 339b9ab1b45596b6db38ec8b33707b741f69f4ab (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
<?php
/**
 * Elgg friends picker
 * Lists the friends picker
 *
 * @package Elgg
 * @subpackage Core
 *
 * @uses $vars['entities'] The array of ElggUser objects
 */

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

?>

<table cellspacing="0" id="friendspicker-members-table">
	<tr>
		<?php
		$column = 0;
		foreach($vars['entities'] as $entity) {
			if (!($entity instanceof ElggEntity)) {
				$entity = get_entity($entity);
			}

			if ($entity instanceof ElggEntity) {
				?>
				<td style="width:25px;">
				<div style="width: 25px;" class="mbl">
					<?php echo elgg_view_entity_icon($entity, 'tiny'); ?>
				</div>
				</td>
				<td style="width: 200px;" class="pas">
					<?php echo $entity->name; ?>
				</td>
				<?php
				$column++;
				if ($column == 3) {
					echo "</tr><tr>";
					$column = 0;
				}
			}
		}

if ($column < 3 && $column != 0) echo "</tr>";
	echo "</table>";
}

if (isset($vars['content'])) {
	echo $vars['content'];
}