aboutsummaryrefslogtreecommitdiff
path: root/mod/foafssl/views/foaf/pageshells/pageshell.php
blob: 909c9aa5863967a9021a51477d7edb975ca5fd93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
 * Elgg XML output pageshell
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 *
 */

header("Content-Type: application/rdf+xml");
// echo $vars['body'];

echo "<?xml version='1.0'?>\n";

if (!$owner = page_owner_entity()) {
	if (!isloggedin()) {
		exit;
	} else {
		$owner = $vars['user'];
	}
}

?>
<rdf:RDF
	xml:lang="en"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
	xmlns:foaf="http://xmlns.com/foaf/0.1/"
	xmlns:cert="http://www.w3.org/ns/auth/cert#"
	xmlns:rsa="http://www.w3.org/ns/auth/rsa#"
	xmlns:ya="http://blogs.yandex.ru/schema/foaf/"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	xmlns:dc="http://purl.org/dc/elements/1.1/">
	<rdf:Description rdf:about="">
		<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/PersonalProfileDocument"/>
		<foaf:maker rdf:resource="#me"/>
		<foaf:primaryTopic rdf:resource="#me"/>
	</rdf:Description>
	<foaf:Person rdf:about="#me">
		<foaf:nick><?php echo $owner->username; ?></foaf:nick>
		<foaf:name><?php echo $owner->name; ?></foaf:name>
		<foaf:homepage rdf:resource="<?php echo $owner->getURL(); ?>" />
		<foaf:mbox_sha1sum><?php echo sha1("mailto:" . $owner->email); ?></foaf:mbox_sha1sum>
		<foaf:img rdf:resource="<?php echo $vars['url']; ?>pg/icon/<?php echo $owner->username; ?>/large/icon.jpg" />
		<?php
			echo $vars['body'];
		?>
	</foaf:Person>
	<?php
		echo elgg_view('foafssl/profile', array('user'=>$owner));
	?>
</rdf:RDF>