aboutsummaryrefslogtreecommitdiff
path: root/mod/exporttest/index.php
blob: 0a4aea8cdc469a190f827423ac371de0dd1aa7e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
	require_once("../../engine/start.php");
	
	global $CONFIG;
	
	$guid = get_input("guid");
	$_SESSION['id'] = 2;
	
	// Get the user
	$owner_id = page_owner();
	
	if ($guid)
	{
		echo elgg_view("exporttest/outputxml", array("xml" => export($guid)));
	}
	else
	{
		$body = elgg_view("exporttest/main", array("owner_id" => $owner_id));
		page_draw("Export a GUID",$body);
	}
?>