aboutsummaryrefslogtreecommitdiff
path: root/mod/invitefriends/index.php
blob: 19471bbed46514ebbd2984c2cfd87d6425644c38 (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 invite page
	 * 
	 * @package ElggFile
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2010
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @link http://elgg.org/
	 */

	require_once(dirname(dirname(dirname(__FILE__))) . '/engine/start.php');
	
	gatekeeper();
	
	set_context('friends');
	set_page_owner($_SESSION['guid']);
	
	$body = elgg_view('invitefriends/form');
	$body = elgg_view_layout('two_column_left_sidebar','',$body);

	page_draw(elgg_echo('friends:invite'),$body);
	
?>