diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-03 15:03:57 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-03 15:03:57 +0000 |
commit | 484363527905dd13267204c71a6d141956ed6ebc (patch) | |
tree | 88ba8272dcacc194daec18a12f03c6fc9b075ac9 /mod/groups/groupprofile.php | |
parent | c3a55fad8f1093e00f3f3689681d1aaf283b46cd (diff) | |
download | elgg-484363527905dd13267204c71a6d141956ed6ebc.tar.gz elgg-484363527905dd13267204c71a6d141956ed6ebc.tar.bz2 |
some work on groups to make them work with the new layout
git-svn-id: https://code.elgg.org/elgg/trunk@1670 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/groupprofile.php')
-rw-r--r-- | mod/groups/groupprofile.php | 48 |
1 files changed, 23 insertions, 25 deletions
diff --git a/mod/groups/groupprofile.php b/mod/groups/groupprofile.php index e29435efc..cf9a96f1f 100644 --- a/mod/groups/groupprofile.php +++ b/mod/groups/groupprofile.php @@ -1,28 +1,26 @@ -<?php - /** - * Full group profile - * - * @package ElggGroups - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Marcus Povey - * @copyright Curverider Ltd 2008 - * @link http://elgg.com/ - */ - - $group_guid = get_input('group_guid'); - set_context('groups'); - - - $group = get_entity($group_guid); +<?php
+ /**
+ * Full group profile
+ *
+ * @package ElggGroups
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ $group_guid = get_input('group_guid');
+ set_context('groups');
+
+
+ $group = get_entity($group_guid);
set_page_owner($group_guid);
- - $body = elgg_view_title($group->name); - $body .= elgg_view('group/group', array('entity' => $group, 'user' => $_SESSION['user'], 'full' => true)); - $body = elgg_view_layout('one_column', $body); - - //$body .= elgg_view_layout('widgets', "", "", elgg_echo('groups:nowidgets')); - - // Finally draw the page - page_draw($group->name, $body); +
+ $area2 = elgg_view_title($group->name);
+ $area2 .= elgg_view('group/group', array('entity' => $group, 'user' => $_SESSION['user'], 'full' => true));
+ $body = elgg_view_layout('two_column_left_sidebar', $area1, $area2);
+
+ // Finally draw the page
+ page_draw($group->name, $body);
?>
\ No newline at end of file |