aboutsummaryrefslogtreecommitdiff
path: root/mod/activity/all.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-01-21 10:39:35 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-01-21 10:39:35 +0000
commite7a6658abfd1f8e20ebc91ce3022eef8376b3e2e (patch)
tree082c703a6579acb50b8606e0ae59629314342bcf /mod/activity/all.php
parent591790174387f9b773c5e8414eda772dad5ede04 (diff)
downloadelgg-e7a6658abfd1f8e20ebc91ce3022eef8376b3e2e.tar.gz
elgg-e7a6658abfd1f8e20ebc91ce3022eef8376b3e2e.tar.bz2
Added Activity stream back in
git-svn-id: https://code.elgg.org/elgg/trunk@2589 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/activity/all.php')
-rw-r--r--mod/activity/all.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/mod/activity/all.php b/mod/activity/all.php
new file mode 100644
index 000000000..88afb26d3
--- /dev/null
+++ b/mod/activity/all.php
@@ -0,0 +1,30 @@
+<?php
+ /**
+ * Elgg activity plugin.
+ *
+ * @package ElggActivity
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+ $limit = get_input('limit', 20);
+ $offset = get_input('offset');
+ $type = get_input('type');
+ $subtype = get_input('subtype');
+ $title = elgg_view_title(elgg_echo('activity:all'));
+
+ global $autofeed;
+ $autofeed = true;
+
+ if (elgg_get_viewtype()=='opendd')
+ $body = elgg_view('activity/dashboard', array('activity' => activity_get_activity_opendd($limit, $offset, $type, $subtype)));
+ else
+ $body = elgg_view('activity/dashboard', array('activity' => activity_get_activity($limit, $offset, $type, $subtype)));
+
+ page_draw(elgg_echo('activity:all'),elgg_view_layout("two_column_left_sidebar", '', $title . $body));
+
+?> \ No newline at end of file