aboutsummaryrefslogtreecommitdiff
path: root/views/default/friends
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-30 12:00:32 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-30 12:00:32 +0000
commit33151234eec9e5129a1ce8bd1fca25e40ce8147d (patch)
tree7cff927b019d8d1956259d5d1e6c6e169836d99e /views/default/friends
parent9c7945b097038f6119cbe0c1a18c65411d2cb38a (diff)
downloadelgg-33151234eec9e5129a1ce8bd1fca25e40ce8147d.tar.gz
elgg-33151234eec9e5129a1ce8bd1fca25e40ce8147d.tar.bz2
Added the tablelist view
git-svn-id: https://code.elgg.org/elgg/trunk@1593 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/friends')
-rw-r--r--views/default/friends/tablelist.php60
1 files changed, 60 insertions, 0 deletions
diff --git a/views/default/friends/tablelist.php b/views/default/friends/tablelist.php
new file mode 100644
index 000000000..716e1cb35
--- /dev/null
+++ b/views/default/friends/tablelist.php
@@ -0,0 +1,60 @@
+<?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>
+ <tr>
+<?php
+
+ $column = 0;
+ foreach($vars['entities'] as $entity) {
+
+?>
+
+ <td style="width:25px">
+ <?php echo elgg_view("profile/icon",array('entity' => $entity, 'size' => 'tiny')); ?>
+ </td>
+ <td style="width: 300px; padding: 5px;">
+<?php
+
+ echo $entity->name;
+
+?>
+ </td>
+
+<?php
+
+ $column++;
+ if ($column > 1) {
+ echo "</tr><tr>";
+ $column = 0;
+ }
+
+ }
+ if ($column > 0) echo "</tr>";
+
+?>
+
+ </table>
+
+<?php
+
+ }
+
+?> \ No newline at end of file