aboutsummaryrefslogtreecommitdiff
path: root/views/foaf/friends/list.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/foaf/friends/list.php')
-rw-r--r--views/foaf/friends/list.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/views/foaf/friends/list.php b/views/foaf/friends/list.php
new file mode 100644
index 000000000..a76a4d508
--- /dev/null
+++ b/views/foaf/friends/list.php
@@ -0,0 +1,40 @@
+<?php
+
+ /**
+ * Elgg friends list (FOAF)
+ * Lists a user's friends
+ *
+ * @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['friends'] The array of ElggUser objects
+ */
+
+ if (is_array($vars['friends']) && sizeof($vars['friends']) > 0) {
+
+ foreach($vars['friends'] as $friend) {
+
+?>
+
+ <foaf:knows>
+
+ <foaf:Person>
+ <foaf:nick><?php echo $friend->username; ?></foaf:nick>
+ <foaf:member_name><?php echo $friend->name; ?></foaf:member_name>
+ <rdfs:seeAlso rdf:resource="<?php echo $vars['url'] . "friends/" . $friend->username . "/?view=foaf" ?>" />
+ <foaf:homepage rdf:resource="<?php echo $friend->getURL(); ?>"/>
+ </foaf:Person>
+ </foaf:knows>
+
+
+<?php
+
+ }
+
+ }
+
+?> \ No newline at end of file