diff options
Diffstat (limited to 'views/opendd')
-rw-r--r-- | views/opendd/search/entity_list.php | 9 |
1 files changed, 9 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..8864b62da --- /dev/null +++ b/views/opendd/search/entity_list.php @@ -0,0 +1,9 @@ +<?php
+
+ $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 |