blob: 49520df207f4d7636a0feb67b6eab58e4a6e2783 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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('two_column_left_sidebar', '', $body);
page_draw($title, $body);
?>
|