aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/views/default/admin/administer_utilities/reportedcontent.php
blob: 32f1083128382dbe0f96fac79131bd6939f8d7f5 (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('types' => 'object', 'subtypes' => 'reported_content'));
if (!$list) {
	$list = '<p class="mtm">' . elgg_echo('reportedcontent:none') . '</p>';
}

echo $list;