blob: 41e2de918acd4434269175a9f85d330ce567c000 (
plain)
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
|
<?php
/**
* Full group profile
*
* @package ElggGroups
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008-2010
* @link http://elgg.com/
*/
$group_guid = get_input('group_guid');
set_context('groups');
global $autofeed;
$autofeed = true;
$group = get_entity($group_guid);
if ($group) {
set_page_owner($group_guid);
$title = $group->name;
// Hide some items from closed groups when the user is not logged in.
$view_all = true;
$groupaccess = group_gatekeeper(false);
if (!$groupaccess)
$view_all = false;
$area2 .= elgg_view_entity($group, TRUE);
if ($view_all) {
//group profile 'items' - these are not real widgets, just contents to display
$area2 .= elgg_view('groups/profileitems',array('entity' => $group));
//group members
$area3 = elgg_view('groups/members',array('entity' => $group));
} else {
$area2 .= elgg_view('groups/closedmembership', array('entity' => $group, 'user' => $_SESSION['user'], 'full' => true));
}
$body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3);
} else {
$title = elgg_echo('groups:notfound');
$area2 = elgg_view_title($title);
$area2 .= "<p class='margin_top'>".elgg_echo('groups:notfound:details')."</p>";
$body = elgg_view_layout('one_column_with_sidebar', $area2);
}
// Finally draw the page
page_draw($title, $body);
?>
|