1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php
/**
* Elgg group activity
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
$group_guid = (int)get_input('group');
set_page_owner($group_guid);
if (!(page_owner_entity() instanceof ElggGroup)) {
forward();
}
group_gatekeeper();
global $CONFIG;
// set up breadcrumbs
$group = get_entity($group_guid);
elgg_push_breadcrumb(elgg_echo('groups'), $CONFIG->wwwroot."pg/groups/world/");
elgg_push_breadcrumb($group->name, $group->getURL());
elgg_push_breadcrumb(elgg_echo('groups:activity'));
$area1 = elgg_view('navigation/breadcrumbs');
$limit = get_input("limit", 20);
$offset = get_input("offset", 0);
$group_guid = get_input("group", 7);
// Sanitise variables -- future proof in case they get sourced elsewhere
$limit = (int) $limit;
$offset = (int) $offset;
$group_guid = (int) $group_guid;
$entities = elgg_get_entities(array(
'container_guids' => $group_guid,
'group_by' => 'e.guid'
));
$entity_guids = array();
foreach ($entities as $entity) {
$entity_guids[] = $entity->getGUID();
}
if (count($entity_guids) > 0) {
$river_items = elgg_view_river_items('', $entity_guids, '', '', '', '', $limit);
$river_items .= elgg_view('riverdashboard/js');
} else {
$river_items .= elgg_echo('groups:no_activity');
}
$area1 .= elgg_view_title(elgg_echo('groups:activity'));
$area1 .= elgg_view("group_activity/extend");
$area1 .= "<div class='group_listings hide_comments'>".$river_items."</div>";
$title = sprintf(elgg_echo("groups:activity"), page_owner_entity()->name);
$body = elgg_view_layout('one_column_with_sidebar', $area1);
// Finally draw the page
page_draw($title, $body);
|