aboutsummaryrefslogtreecommitdiff
path: root/views/ical/search/entity_list.php
blob: 38c19fbb78611957d99f09a433ecb9fa567c2521 (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);
}