aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/pages/pages/view.php
blob: 06064d993b83efde849554b6a9a9e2d817301683 (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
53
54
<?php
/**
 * View a single page
 *
 * @package ElggPages
 */

$page_guid = get_input('guid');
$page = get_entity($page_guid);
if (!$page) {
	forward();
}

elgg_set_page_owner_guid($page->getContainerGUID());

group_gatekeeper();

$container = elgg_get_page_owner_entity();
if (!$container) {
}

$title = $page->title;

if (elgg_instanceof($container, 'group')) {
	elgg_push_breadcrumb($container->name, "pages/group/$container->guid/all");
} else {
	elgg_push_breadcrumb($container->name, "pages/owner/$container->username");
}
pages_prepare_parent_breadcrumbs($page);
elgg_push_breadcrumb($title);

$content = elgg_view_entity($page, array('full_view' => true));
$content .= elgg_view_comments($page);

$buttons = '';
if (elgg_get_logged_in_user_guid() == $page->getOwnerGuid()) {
	$url = "pages/add/$page->guid";
	$buttons = elgg_view('output/url', array(
			'text' => elgg_echo('pages:newchild'),
			'href' => $url,
			'class' => 'elgg-button elgg-button-action',
		));
	$buttons = "<ul class=\"elgg-menu elgg-menu-title\"><li>$buttons</li></ul>";
}

$body = elgg_view_layout('content', array(
	'filter' => '',
	'buttons' => $buttons,
	'content' => $content,
	'title' => $title,
	'sidebar' => elgg_view('pages/sidebar/navigation'),
));

echo elgg_view_page($title, $body);