blob: bab06135f667808c768bc1819ec26369041036cb (
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/
*/
admin_gatekeeper();
// Render the file upload page
$title = elgg_echo("guidtool:import");
$body = elgg_view_title($title);
$body .= elgg_view("forms/guidtool/import");
$body = elgg_view_layout('one_column', $body);
page_draw($title, $body);
?>
|