aboutsummaryrefslogtreecommitdiff
path: root/views/ical/search/entity_list.php
blob: 9e5737bbe725898f263255e2e52a85412f639da9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

	/**
	 * Elgg default layout
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @author Curverider Ltd
	 * @link http://elgg.org/
	 */

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

?>