blob: a5b10465ed32be8765302515e2499074a3de1a68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
?>
|