tasks_enable == "no") { return true; } $all_link = elgg_view('output/url', array( 'href' => "tasks/group/$group->guid/all", 'text' => elgg_echo('link:view:all'), 'is_trusted' => true, )); elgg_push_context('widgets'); $entities = tasks_get_entities(array( 'type' => 'object', 'subtype' => 'task', 'container_guid' => elgg_get_page_owner_guid(), 'limit' => 6, 'list_guid' => 0, )); $content = elgg_view_entity_list($entities, array( 'full_view' => false, 'pagination' => false, )); elgg_pop_context(); if (!$content) { $content = '

' . elgg_echo('tasks:none') . '

'; } $new_link = elgg_view('output/url', array( 'href' => "tasks/add/$group->guid", 'text' => elgg_echo('tasks:add'), 'is_trusted' => true, )); echo elgg_view('groups/profile/module', array( 'title' => elgg_echo('tasks:group'), 'content' => $content, 'all_link' => $all_link, 'add_link' => $new_link, ));