aboutsummaryrefslogtreecommitdiff
path: root/mod/livestream/views/default/list.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/livestream/views/default/list.php')
-rwxr-xr-xmod/livestream/views/default/list.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/mod/livestream/views/default/list.php b/mod/livestream/views/default/list.php
new file mode 100755
index 000000000..a5b10465e
--- /dev/null
+++ b/mod/livestream/views/default/list.php
@@ -0,0 +1,15 @@
+<?php
+$page_owner = page_owner_entity();
+$offset = get_input('offset', 0);
+
+$options = Array(
+ 'type' => 'object',
+ 'subtype' => 'livestream',
+ 'container_guids' => Array($page_owner->guid),
+ 'offset' => $offset,
+ 'limit' => 4
+);
+
+echo elgg_list_entities($options);
+
+?> \ No newline at end of file