diff options
author | Sem <sembrestels@riseup.net> | 2013-11-09 16:13:46 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2013-11-09 16:13:46 +0100 |
commit | e2a2fbdccaf0f48878903f448428cab5852d0870 (patch) | |
tree | 9cbe6b74c8e2e191ec65fba78d7435af35506f82 /mod/dokuwiki/index.php | |
parent | 59448d8a9864573c05477a63a6dda404c455fdb6 (diff) | |
parent | b603da53e13005c67d05efac67b70023dfffc450 (diff) | |
download | elgg-e2a2fbdccaf0f48878903f448428cab5852d0870.tar.gz elgg-e2a2fbdccaf0f48878903f448428cab5852d0870.tar.bz2 |
Add 'mod/dokuwiki/' from commit 'b603da53e13005c67d05efac67b70023dfffc450'
git-subtree-dir: mod/dokuwiki
git-subtree-mainline: 59448d8a9864573c05477a63a6dda404c455fdb6
git-subtree-split: b603da53e13005c67d05efac67b70023dfffc450
Diffstat (limited to 'mod/dokuwiki/index.php')
-rw-r--r-- | mod/dokuwiki/index.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mod/dokuwiki/index.php b/mod/dokuwiki/index.php new file mode 100644 index 000000000..e4e039f51 --- /dev/null +++ b/mod/dokuwiki/index.php @@ -0,0 +1,17 @@ +<?php + + elgg_push_breadcrumb(elgg_echo('dokuwiki')); + $offset = (int)get_input('offset', 0); + $title = elgg_echo("dokuwiki:title"); + $content = elgg_list_entities(array('subtype'=>'dokuwiki', 'offset'=>$offset, 'types'=>'object','full_view'=>false)); + $body = elgg_view_layout('content', array( + 'content' => $content, + 'title' => $title, + 'filter' => '', + )); + + // Finally draw the page + echo elgg_view_page($title, $body); + + +?> |