aboutsummaryrefslogtreecommitdiff
path: root/mod/guidtool/format_picker.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/format_picker.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/format_picker.php')
-rw-r--r--mod/guidtool/format_picker.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/mod/guidtool/format_picker.php b/mod/guidtool/format_picker.php
new file mode 100644
index 000000000..f5e12143d
--- /dev/null
+++ b/mod/guidtool/format_picker.php
@@ -0,0 +1,25 @@
+<?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/
+ */
+
+ global $CONFIG;
+
+ admin_gatekeeper();
+
+ $formats = guidtool_get_import_actions();
+
+ $title = elgg_echo("guidtool:pickformat");
+ $body = elgg_view_title($title);
+ $body .= elgg_view('forms/guidtool/format', array('formats' => $formats));
+
+ $body = elgg_view_layout('one_column', $body);
+
+ page_draw($title, $body);
+?> \ No newline at end of file