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_title($title); $area2 .= elgg_view('group/group', array('entity' => $group, 'user' => $_SESSION['user'], 'full' => 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('two_column_left_sidebar', $area1, $area2, $area3); } else { $title = elgg_echo('groups:notfound'); $area2 = elgg_view_title($title); $area2 .= "
" . elgg_echo('groups:notfound:details') . "
"; $body = elgg_view_layout('two_column_left_sidebar', "", $area2,""); } // Finally draw the page page_draw($title, $body); ?>