aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/views/default/pages/sidebar/history.php
blob: e0e8ed11a72e12b35159d24c2f34d923ce466006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * History of this page
 *
 * @uses $vars['page']
 */

$title = elgg_echo('pages:history');

if ($vars['page']) {
	$options = array(
		'guid' => $vars['page']->guid,
		'annotation_name' => 'page',
		'limit' => 20,
		'reverse_order_by' => true
	);
	elgg_push_context('widgets');
	$content = elgg_list_annotations($options);
}

echo elgg_view_module('aside', $title, $content);