diff options
Diffstat (limited to 'mod/pages/revision.php')
-rw-r--r-- | mod/pages/revision.php | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/mod/pages/revision.php b/mod/pages/revision.php deleted file mode 100644 index 968c64b58..000000000 --- a/mod/pages/revision.php +++ /dev/null @@ -1,54 +0,0 @@ -<?php -/** - * View a revision of page - * - * @package ElggPages - */ - -$id = get_input('id'); -$annotation = elgg_get_annotation_from_id($id); -if (!$annotation) { - forward(); -} - -$page = get_entity($annotation->entity_guid); -if (!$page) { - -} - -elgg_set_page_owner_guid($page->getContainerGUID()); - -group_gatekeeper(); - -$container = elgg_get_page_owner_entity(); -if (!$container) { -} - -$title = $page->title . ": " . elgg_echo('pages:revision'); - -if (elgg_instanceof($container, 'group')) { - elgg_push_breadcrumb($container->name, "pages/group/$container->guid/owner"); -} else { - elgg_push_breadcrumb($container->name, "pages/owner/$container->username"); -} -pages_prepare_parent_breadcrumbs($page); -elgg_push_breadcrumb($page->title, $page->getURL()); -elgg_push_breadcrumb(elgg_echo('pages:revision')); - -$content = elgg_view('object/page_top', array( - 'entity' => $page, - 'revision' => $annotation, - 'full' => true, -)); - -$sidebar = elgg_view('pages/sidebar/history', array('page' => $page)); - -$body = elgg_view_layout('content', array( - 'filter' => '', - 'buttons' => '', - 'content' => $content, - 'title' => $title, - 'sidebar' => $sidebar, -)); - -echo elgg_view_page($title, $body); |