Elgg  Version 1.9
tablelist.php
Go to the documentation of this file.
1 <?php
12 if (is_array($vars['entities'])) {
13 
14 ?>
15 
16 <table cellspacing="0" id="friendspicker-members-table">
17  <tr>
18  <?php
19  $column = 0;
20  foreach($vars['entities'] as $entity) {
21  if (!($entity instanceof ElggEntity)) {
22  $entity = get_entity($entity);
23  }
24 
25  if ($entity instanceof ElggEntity) {
26  ?>
27  <td style="width:25px;">
28  <div style="width: 25px;" class="mbl">
29  <?php echo elgg_view_entity_icon($entity, 'tiny'); ?>
30  </div>
31  </td>
32  <td style="width: 200px;" class="pas">
33  <?php echo $entity->name; ?>
34  </td>
35  <?php
36  $column++;
37  if ($column == 3) {
38  echo "</tr><tr>";
39  $column = 0;
40  }
41  }
42  }
43 
44 if ($column < 3 && $column != 0) echo "</tr>";
45  echo "</table>";
46 }
47 
48 if (isset($vars['content'])) {
49  echo $vars['content'];
50 }
$column
Definition: add.php:13
fieldset div
Definition: admin.php:462
elgg_view_entity_icon(ElggEntity $entity, $size= 'medium', $vars=array())
View the icon of an entity.
Definition: views.php:862
elgg echo
Translates a string.
Definition: languages.js:43
td
Definition: admin.php:63
list style
Definition: admin.php:1148
elgg table alt tr
Definition: admin.php:412
$entity
Definition: delete.php:10
table
Definition: admin.php:59
get_entity($guid)
Loads and returns an entity object from a guid.
Definition: entities.php:604
if(file_exists($welcome)) $vars
Definition: upgrade.php:93