From 1d527097e116d130fdeb58871f040e6a30449ef2 Mon Sep 17 00:00:00 2001 From: cash Date: Fri, 7 Jan 2011 02:50:45 +0000 Subject: cleaned up the group profile git-svn-id: http://code.elgg.org/elgg/trunk@7853 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/groups/groupprofile.php | 97 ++++++++++++++++++++------------------------- 1 file changed, 42 insertions(+), 55 deletions(-) (limited to 'mod/groups/groupprofile.php') diff --git a/mod/groups/groupprofile.php b/mod/groups/groupprofile.php index 43473e261..1c35163ad 100644 --- a/mod/groups/groupprofile.php +++ b/mod/groups/groupprofile.php @@ -1,56 +1,43 @@ 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' => get_loggedin_user(), 'full' => true)); - } - - $content = $area1 . $area2; - $params = array( - 'content' => $content, - 'sidebar' => $area3 - ); - $body = elgg_view_layout('one_column_with_sidebar', $params); - } else { - $title = elgg_echo('groups:notfound'); - - $area2 = elgg_view_title($title); - $area2 .= "

".elgg_echo('groups:notfound:details')."

"; - - $body = elgg_view_layout('one_column_with_sidebar', array('content' => $area2)); - } - - // Finally draw the page - echo elgg_view_page($title, $body); -?> \ No newline at end of file +/** + * Profile of a group + * + * @package ElggGroups + */ + +$guid = get_input('group_guid'); +elgg_set_context('groups'); + +elgg_set_page_owner_guid($guid); + +// can the user see all content +$group_access = group_gatekeeper(false); + +// turn this into a core function +global $autofeed; +$autofeed = true; + +$group = get_entity($guid); + +elgg_push_breadcrumb(elgg_echo('groups:all'), elgg_get_site_url() . "pg/groups/world"); +elgg_push_breadcrumb($group->name); + +$sidebar = ''; +$content = elgg_view('groups/profile/profile_block', array('entity' => $group)); +if (group_gatekeeper(false)) { + $content .= elgg_view('groups/profile/widgets', array('entity' => $group)); + $sidebar = elgg_view('groups/sidebar/members', array('entity' => $group)); +} else { + $content .= elgg_view('groups/profile/closed_membership'); +} + +$params = array( + 'content' => $content, + 'sidebar' => $sidebar, + 'title' => $group->name, + 'buttons' => elgg_view('groups/profile/buttons', array('entity' => $group)), + 'filter' => '', +); +$body = elgg_view_layout('content', $params); + +echo elgg_view_page($title, $body); -- cgit v1.2.3