aboutsummaryrefslogtreecommitdiff
path: root/pages/groups
diff options
context:
space:
mode:
Diffstat (limited to 'pages/groups')
-rw-r--r--pages/groups/info.php27
-rw-r--r--pages/groups/wall.php35
2 files changed, 0 insertions, 62 deletions
diff --git a/pages/groups/info.php b/pages/groups/info.php
deleted file mode 100644
index cdf84d052..000000000
--- a/pages/groups/info.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-// turn this into a core function
-global $autofeed;
-$autofeed = true;
-
-$group = elgg_get_page_owner_entity();
-if (!$group instanceof ElggGroup) {
- forward('groups/all');
-}
-
-elgg_load_library('elgg:groups');
-groups_register_profile_buttons($group);
-
-$content = elgg_view('groups/profile/layout', array('entity' => $group));
-if (group_gatekeeper(false)) {
- $sidebar = elgg_view('groups/sidebar/members', array('entity' => $group));
-} else {
- $sidebar = '';
-}
-
-$body = elgg_view_layout('two_sidebar', array(
- 'content' => $content,
- 'sidebar_alt' => $sidebar,
- 'title' => $group->name,
-));
-
-echo elgg_view_page($group->name, $body); \ No newline at end of file
diff --git a/pages/groups/wall.php b/pages/groups/wall.php
deleted file mode 100644
index 9a273e262..000000000
--- a/pages/groups/wall.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-$group = elgg_get_page_owner_entity();
-
-if (!$group || !elgg_instanceof($group, 'group')) {
- register_error(elgg_echo('groups:notfound'));
- forward();
-}
-
-elgg_load_library('elgg:groups');
-groups_register_profile_buttons($group);
-
-$title = $group->name;
-
-$composer = '';
-if (elgg_is_logged_in()) {
- $composer = elgg_view('page/elements/composer', array('entity' => $group));
-}
-
-$db_prefix = elgg_get_config('dbprefix');
-$activity = elgg_list_river(array(
- 'joins' => array("JOIN {$db_prefix}entities e ON e.guid = rv.object_guid"),
- 'wheres' => array("e.container_guid = $group->guid OR rv.object_guid = $group->guid"),
-));
-
-if (!$activity) {
- $activity = elgg_view('output/longtext', array('value' => elgg_echo('group:activity:none')));
-}
-
-$body = elgg_view_layout('two_sidebar', array(
- 'title' => $title,
- 'content' => $composer . $activity,
-));
-
-echo elgg_view_page($title, $body);