diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-29 16:12:32 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-29 16:12:32 +0000 |
commit | d629314bf802040b85e9a5ffd5de2489ce3267cf (patch) | |
tree | cbdb94aeaf679839039595d9eb86453f07fd4efb /views/foaf/friends | |
parent | 0a504dc10c90d24d6526fe84d745c8db7dc4da1a (diff) | |
download | elgg-d629314bf802040b85e9a5ffd5de2489ce3267cf.tar.gz elgg-d629314bf802040b85e9a5ffd5de2489ce3267cf.tar.bz2 |
Added FOAF
git-svn-id: https://code.elgg.org/elgg/trunk@760 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/foaf/friends')
-rw-r--r-- | views/foaf/friends/list.php | 40 |
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 |