aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/views/default/admin/administer_utilities/reportedcontent.php
blob: ed52a536d659024235232ca5111505727fc5938a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
/**
 * Elgg Reported content admin page
 *
 * @package ElggReportedContent
 */

$list = elgg_list_entities(array('type' => 'object', 'subtype' => 'reported_content'));
if (!$list) {
	$list = '<p class="mtm">' . elgg_echo('reportedcontent:none') . '</p>';
}

echo $list;