aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/add.php
blob: 02892b4eb1f675bd792bb645a2d821e9bd8e645f (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
26
27
28
29
30
31
32
33
34
35
36
<?php

	/**
	 * Elgg reported content send report page
	 * 
	 * @package ElggReportedContent
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider <info@elgg.com>
	 * @copyright Curverider Ltd 2008-2010
	 * @link http://elgg.org/
	 */

	// Start engine
		require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
		
	// You need to be logged in for this one
		gatekeeper();
		
	// Get the current page's owner
		$page_owner = page_owner_entity();
		if ($page_owner === false || is_null($page_owner)) {
			$page_owner = $_SESSION['user'];
			set_page_owner($page_owner->getGUID());
		}
			
		$area2 .= elgg_view_title(elgg_echo('reportedcontent:this'), false);
		
	    $area2 .= elgg_view('reportedcontent/form');
		
	// Format page
		$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
		
	// Draw it
		page_draw(elgg_echo('reportedcontent:add'),$body);

?>