aboutsummaryrefslogtreecommitdiff
path: root/views/json/search/entity_list.php
blob: c778bf5dff9587712b7340b23018580d546b245a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * Elgg default layout
 *
 * @package Elgg
 * @subpackage Core
 */

$entities = $vars['entities'];
if (is_array($entities) && sizeof($entities) > 0) {
	foreach($entities as $entity) {
		echo elgg_view_entity($entity);
	}
}