aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/views/default/widgets/reportedcontent/content.php
blob: 4c65956537e40dce4a6b895b775836e5e8f08fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/**
 * List the latest reports
 */

$list = elgg_list_entities(array(
	'types' => 'object',
	'subtypes' => 'reported_content',
	'limit' => $vars['entity']->num_display,
	'pagination' => false,
));
if (!$list) {
	$list = '<p class="mtm">' . elgg_echo('reportedcontent:none') . '</p>';
}

echo $list;