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, 0 insertions, 40 deletions
diff --git a/views/foaf/friends/list.php b/views/foaf/friends/list.php
deleted file mode 100644
index a76a4d508..000000000
--- a/views/foaf/friends/list.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?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