aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/views/default/admin/overview/reportedcontent.php
blob: a12a9a6965984f73ecb6442b6350ffc20c649b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * Elgg Reported content
 *
 * @package ElggReportedContent
 */

$title = elgg_view_title(elgg_echo('reportedcontent'));

$reported = elgg_get_entities(array('types' => 'object', 'subtypes' => 'reported_content', 'limit' => 9999));
$list = elgg_view("reportedcontent/listing", array('entity' => $reported));

// Display main admin menu
$body = <<<__HTML
$title
$list
__HTML;

echo $body;