aboutsummaryrefslogtreecommitdiff
path: root/views/opendd/search/entity_list.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/opendd/search/entity_list.php')
-rw-r--r--views/opendd/search/entity_list.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/views/opendd/search/entity_list.php b/views/opendd/search/entity_list.php
new file mode 100644
index 000000000..6b33cefde
--- /dev/null
+++ b/views/opendd/search/entity_list.php
@@ -0,0 +1,11 @@
+<?php
+/**
+ * @package Elgg
+ * @subpackage Core
+ */
+$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