diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-31 14:56:39 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-31 14:56:39 +0000 |
commit | cbb06b10079ee132aae4cbf573aeaa996f390165 (patch) | |
tree | d452a9613f55a1591da9f74109a8f9518168b3c4 /mod/guidtool/view.php | |
parent | df08e57a53a4d99a39b0f3d9dcafea4c6eefb24e (diff) | |
download | elgg-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/view.php')
-rw-r--r-- | mod/guidtool/view.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mod/guidtool/view.php b/mod/guidtool/view.php new file mode 100644 index 000000000..c9f1f9fc5 --- /dev/null +++ b/mod/guidtool/view.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 = "GUID: $entity_guid"; + $body = elgg_view_title($title); + $body .= elgg_view("guidtool/profile", array('entity_guid' => $entity_guid)); + + $body = elgg_view_layout('one_column', $body); + + page_draw($title, $body); +?>
\ No newline at end of file |