diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-01 18:35:37 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-01 18:35:37 +0000 |
commit | 813c841b2376b8c17641331407ddfed819fbfa79 (patch) | |
tree | 447a3c45de3a465970f9c5211ece896adc72a174 /views/foaf/friends | |
parent | f87725e1e0a2c096011cbfa6be6a44d07a629a0e (diff) | |
download | elgg-813c841b2376b8c17641331407ddfed819fbfa79.tar.gz elgg-813c841b2376b8c17641331407ddfed819fbfa79.tar.bz2 |
Fixed FOAF view
git-svn-id: https://code.elgg.org/elgg/trunk@1664 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/foaf/friends')
-rw-r--r-- | views/foaf/friends/list.php | 40 |
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 |