aboutsummaryrefslogtreecommitdiff
path: root/views/ical/search/entity_list.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/ical/search/entity_list.php')
-rw-r--r--views/ical/search/entity_list.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/views/ical/search/entity_list.php b/views/ical/search/entity_list.php
new file mode 100644
index 000000000..8712f7134
--- /dev/null
+++ b/views/ical/search/entity_list.php
@@ -0,0 +1,20 @@
+<?php
+
+ /**
+ * Elgg default layout
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008-2009
+ * @link http://elgg.org/
+ */
+
+ $entities = $vars['entities'];
+ if (is_array($entities) && sizeof($entities) > 0) {
+ foreach($entities as $entity)
+ echo elgg_view_entity($entity);
+ }
+
+?> \ No newline at end of file