aboutsummaryrefslogtreecommitdiff
path: root/views/foaf/search/entity_list.php
blob: b786865d7552979aa7941caa2234786fd7179c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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);
	}
}