aboutsummaryrefslogtreecommitdiff
path: root/mod/guidtool/export.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/guidtool/export.php')
-rw-r--r--mod/guidtool/export.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/mod/guidtool/export.php b/mod/guidtool/export.php
new file mode 100644
index 000000000..e1a2b86c6
--- /dev/null
+++ b/mod/guidtool/export.php
@@ -0,0 +1,22 @@
+<?php
+ /**
+ * Elgg GUID Tool
+ *
+ * @package ElggGUIDTool
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ $entity_guid = get_input('entity_guid');
+
+ // Render the file upload page
+ $title = elgg_echo('guidbrowser:export');
+ $body = elgg_view_title($title);
+ $body .= elgg_view("forms/guidtool/export", array('entity_guid' => $entity_guid));
+
+ $body = elgg_view_layout('one_column', $body);
+
+ page_draw($title, $body);
+?> \ No newline at end of file