blob: f50a6b70d959a012435fc69099a99f347ccb6b90 (
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
|
<?php
$user = new ElggUser();
$group = new ElggGroup();
$sizes = array('large', 'medium', 'small', 'tiny');
?>
<table class="elgg-table">
<tr>
<th></th>
<?php
foreach ($sizes as $size) {
echo "<th>$size</th>";
}
?>
</tr>
<tr>
<th>User</th>
<?php
foreach ($sizes as $size) {
echo '<td>';
echo elgg_view_entity_icon($user, $size, array('use_hover' => false));
echo '</td>';
}
?>
</tr>
<tr>
<th>Group</th>
<?php
foreach ($sizes as $size) {
echo '<td>';
echo elgg_view_entity_icon($group, $size, array('use_hover' => false));
echo '</td>';
}
?>
</tr>
</table>
|