aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/group
diff options
context:
space:
mode:
Diffstat (limited to 'mod/groups/views/default/group')
-rw-r--r--mod/groups/views/default/group/group.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/mod/groups/views/default/group/group.php b/mod/groups/views/default/group/group.php
new file mode 100644
index 000000000..c1f6d282f
--- /dev/null
+++ b/mod/groups/views/default/group/group.php
@@ -0,0 +1,21 @@
+<?php
+ /**
+ * Elgg groups profile display
+ *
+ * @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/
+ */
+
+ if ($vars['full']) {
+ echo elgg_view("groups/groupprofile",$vars);
+ } else {
+ if (get_input('search_viewtype') == "gallery") {
+ echo elgg_view('groups/groupgallery',$vars);
+ } else {
+ echo elgg_view("groups/grouplisting",$vars);
+ }
+ }
+?> \ No newline at end of file