aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/history.php
blob: fec7702ba75fdcc96afaa00c94ff357a42f156df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
	/**
	 * Elgg Pages
	 * 
	 * @package ElggPages
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2010
	 * @link http://elgg.com/
	 */

	require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
	gatekeeper();
		
	$page_guid = get_input('page_guid');
		
    $pages = get_entity($page_guid);
	if ($pages->container_guid) {
		set_page_owner($pages->container_guid);
	} else {
		set_page_owner($pages->owner_guid);
	}
	
	if (is_callable('group_gatekeeper')) group_gatekeeper();

	$limit = (int)get_input('limit', 20);
	$offset = (int)get_input('offset');
	
	$page_guid = get_input('page_guid');
	$pages = get_entity($page_guid);
	
	add_submenu_item(sprintf(elgg_echo("pages:user"), page_owner_entity()->name), $CONFIG->url . "pg/pages/owned/" . page_owner_entity()->username, 'pageslinksgeneral');
					 
	$title = $pages->title . ": " . elgg_echo("pages:history");
	$area2 = elgg_view_title($title);
	
	$context = get_context();
	
	set_context('search');
	
	$area2 .= list_annotations($page_guid, 'page', $limit, false);
	
	set_context($context);
	
	
	pages_set_navigation_parent($pages);
	$area3 = elgg_view('pages/sidebar/tree');
	
	$body = elgg_view_layout('one_column_with_sidebar', $area3, $area2);
	
	page_draw($title, $body);
?>