blob: 0289f5e8474352917dd28d3248287005f2538e83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 Curverider Ltd
* @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('two_column_left_sidebar', '', $body);
page_draw($title, $body);
?>
|