diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-16 15:54:38 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-16 15:54:38 +0000 |
commit | f81d6e670ba8c6c98819612cdddad97649be2241 (patch) | |
tree | a47f71d337ac41580ea5da54506b635054e16d7f /mod/activity/all.php | |
parent | 1d557893a991830c28f4dbd8c25ed906044a2419 (diff) | |
download | elgg-f81d6e670ba8c6c98819612cdddad97649be2241.tar.gz elgg-f81d6e670ba8c6c98819612cdddad97649be2241.tar.bz2 |
Initial activity view.
Missing functionality: comments, tabs and drill down ability.
git-svn-id: https://code.elgg.org/elgg/trunk@2272 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/activity/all.php')
-rw-r--r-- | mod/activity/all.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mod/activity/all.php b/mod/activity/all.php new file mode 100644 index 000000000..b844bffd4 --- /dev/null +++ b/mod/activity/all.php @@ -0,0 +1,24 @@ +<?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')); + + $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 |