aboutsummaryrefslogtreecommitdiff
path: root/mod/exporttest/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/exporttest/index.php')
-rw-r--r--mod/exporttest/index.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/mod/exporttest/index.php b/mod/exporttest/index.php
deleted file mode 100644
index f3010d971..000000000
--- a/mod/exporttest/index.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?php
- /**
- * Elgg export test
- *
- * @package ElggDevTools
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Marcus Povey <marcus@marcus-povey.co.uk>
- * @copyright Curverider Ltd 2008
- * @link http://elgg.com/
- */
-
- require_once("../../engine/start.php");
-
- global $CONFIG;
-
- $guid = get_input("guid");
- $action = get_input("action");
-
- // Get the user
- $owner_id = page_owner();
-
- if ($guid)
- {
- echo elgg_view_layout("one_column", elgg_view("exporttest/outputxml", array("xml" => export($guid))));
- }
- else if ($action=='import')
- {
- $area1 = print_r(import(get_input('xml')), true);
- $area1 .= elgg_view("exporttest/main", array("owner_id" => $owner_id));
-
- $body = elgg_view_layout("one_column", $area1);
-
- page_draw("Import results",$body);
- }
- else
- {
- $body = elgg_view_layout("one_column", elgg_view("exporttest/main", array("owner_id" => $owner_id)));
- page_draw("Export a GUID",$body);
- }
-?> \ No newline at end of file