aboutsummaryrefslogtreecommitdiff
path: root/mod/guidtool/export.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-31 14:56:39 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-31 14:56:39 +0000
commitcbb06b10079ee132aae4cbf573aeaa996f390165 (patch)
treed452a9613f55a1591da9f74109a8f9518168b3c4 /mod/guidtool/export.php
parentdf08e57a53a4d99a39b0f3d9dcafea4c6eefb24e (diff)
downloadelgg-cbb06b10079ee132aae4cbf573aeaa996f390165.tar.gz
elgg-cbb06b10079ee132aae4cbf573aeaa996f390165.tar.bz2
Guid tool for import, export and browsing.
git-svn-id: https://code.elgg.org/elgg/trunk@1633 36083f99-b078-4883-b0ff-0f9b5a30f544
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