aboutsummaryrefslogtreecommitdiff
path: root/mod/guidtool/view.php
blob: ba6302d70e1abe3bf87b84ec9418f4ea6e3b8105 (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 Curverider Ltd
	 * @copyright Curverider Ltd 2008-2009
	 * @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('two_column_left_sidebar', '', $body);
	
	page_draw($title, $body);
?>