diff options
Diffstat (limited to 'mod/exporttest/index.php')
-rw-r--r-- | mod/exporttest/index.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mod/exporttest/index.php b/mod/exporttest/index.php new file mode 100644 index 000000000..0a4aea8cd --- /dev/null +++ b/mod/exporttest/index.php @@ -0,0 +1,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); + } +?>
\ No newline at end of file |