diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-15 12:56:01 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-15 12:56:01 +0000 |
commit | a6eb3bf8d0f49e9b20fa8153ddca7b9d551f950d (patch) | |
tree | a435afa05cab8bf2ea5d7e4b785f018e695f1869 /views/default/friends/tablelist.php | |
parent | 2165e929ddf954f02a589234b2e0faef7ef18df7 (diff) | |
download | elgg-a6eb3bf8d0f49e9b20fa8153ddca7b9d551f950d.tar.gz elgg-a6eb3bf8d0f49e9b20fa8153ddca7b9d551f950d.tar.bz2 |
moving friends views into core
git-svn-id: http://code.elgg.org/elgg/trunk@7633 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/friends/tablelist.php')
-rw-r--r-- | views/default/friends/tablelist.php | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/views/default/friends/tablelist.php b/views/default/friends/tablelist.php deleted file mode 100644 index 12a0763c9..000000000 --- a/views/default/friends/tablelist.php +++ /dev/null @@ -1,50 +0,0 @@ -<?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="collectionMembersTable"> - <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; - } - } - } - -if ($column < 3 && $column != 0) echo "</tr>"; - echo "</table>"; -} - -if (isset($vars['content'])) { - echo $vars['content']; -}
\ No newline at end of file |