aboutsummaryrefslogtreecommitdiff
path: root/mod/dokuwiki/index.php
blob: e4e039f518268e4a34d90b6ad64152766c308c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);


?>