From d2e9a0c7fae9d0c57dd8646aa6ef277f2e14b7fe Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sun, 11 Sep 2011 08:30:04 -0400 Subject: Fixes #3340 adds group activity widget for the user dashboard --- .../default/widgets/group_activity/content.php | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 mod/dashboard/views/default/widgets/group_activity/content.php (limited to 'mod/dashboard/views/default/widgets/group_activity/content.php') diff --git a/mod/dashboard/views/default/widgets/group_activity/content.php b/mod/dashboard/views/default/widgets/group_activity/content.php new file mode 100644 index 000000000..60a9b352c --- /dev/null +++ b/mod/dashboard/views/default/widgets/group_activity/content.php @@ -0,0 +1,36 @@ +num_display; +$guid = $vars['entity']->group_guid; + +$content = ''; + +if ($guid) { + $title = get_entity($guid)->name; + $content = "

$title

"; + + elgg_push_context('widgets'); + $db_prefix = elgg_get_config('dbprefix'); + $activity = elgg_list_river(array( + 'limit' => $num, + 'pagination' => false, + 'joins' => array("JOIN {$db_prefix}entities e1 ON e1.guid = rv.object_guid"), + 'wheres' => array("(e1.container_guid = $guid)"), + )); + if (!$activity) { + $activity = '

' . elgg_echo('dashboard:widget:group:noactivity') . '

'; + } + elgg_pop_context(); + + $content .= $activity; +} else { + // no group selected yet + if ($vars['entity']->canEdit()) { + $content = '

' . elgg_echo('dashboard:widget:group:noselect') . '

'; + } +} + +echo $content; -- cgit v1.2.3