diff options
Diffstat (limited to 'views/default/friends/tablelist.php')
-rw-r--r-- | views/default/friends/tablelist.php | 129 |
1 files changed, 65 insertions, 64 deletions
diff --git a/views/default/friends/tablelist.php b/views/default/friends/tablelist.php index c0c481e00..f59e02250 100644 --- a/views/default/friends/tablelist.php +++ b/views/default/friends/tablelist.php @@ -1,65 +1,66 @@ -<?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 cellspacing="0" id="collectionMembersTable" style="margin:10px;">
- <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">
- <?php echo elgg_view("profile/icon",array('entity' => $entity, 'size' => 'tiny')); ?>
- </td>
- <td style="width: 200px; padding: 5px;">
-<?php
-
- echo $entity->name;
-
-?>
- </td>
-
-<?php
-
- $column++;
- if ($column == 3) {
- echo "</tr><tr>";
- $column = 0;
- }
-
- }
-
-
-?>
-
-
-
-<?php
- }
- if ($column < 3 && $column != 0) echo "</tr>";
- echo "</table>";
- }
-
- if (isset($vars['content'])) echo $vars['content'];
-
+<?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 cellspacing="0" id="collectionMembersTable" style="margin:10px;"> + <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; margin-bottom: 15px;"> + <?php echo elgg_view("profile/icon",array('entity' => $entity, 'size' => 'tiny')); ?> + </div> + </td> + <td style="width: 200px; padding: 5px;"> +<?php + + echo $entity->name; + +?> + </td> + +<?php + + $column++; + if ($column == 3) { + echo "</tr><tr>"; + $column = 0; + } + + } + + +?> + + + +<?php + } + if ($column < 3 && $column != 0) echo "</tr>"; + echo "</table>"; + } + + if (isset($vars['content'])) echo $vars['content']; + ?>
\ No newline at end of file |