From e8d148970261207efbe5435e1abcf68c5ed59cc8 Mon Sep 17 00:00:00 2001 From: cash Date: Sat, 15 Jan 2011 15:04:39 +0000 Subject: pages plugin using new layout - still need to get subpages working and navigation git-svn-id: http://code.elgg.org/elgg/trunk@7885 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/pages/view.php | 73 ++++++++++++++++++++++-------------------------------- 1 file changed, 30 insertions(+), 43 deletions(-) (limited to 'mod/pages/view.php') diff --git a/mod/pages/view.php b/mod/pages/view.php index 6996c44e0..19f7c8227 100644 --- a/mod/pages/view.php +++ b/mod/pages/view.php @@ -5,59 +5,46 @@ * @package ElggPages */ -require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - -$page_guid = get_input('page_guid'); -elgg_set_context('pages'); - -if (is_callable('group_gatekeeper')) { - group_gatekeeper(); -} - -$pages = get_entity($page_guid); -if (!$pages) { +$page_guid = get_input('guid'); +$page = get_entity($page_guid); +if (!$page) { forward(); } -$container = $pages->container_guid; +elgg_set_page_owner_guid($page->getContainerGUID()); -if ($container) { - set_page_owner($container); -} else { - set_page_owner($pages->owner_guid); -} +group_gatekeeper(); -global $CONFIG; - -if ($pages->canEdit()) { - add_submenu_item(elgg_echo('pages:newchild'), "pg/pages/new/?parent_guid={$pages->getGUID()}&container_guid=" . elgg_get_page_owner_guid(), 'pagesactions'); - $delete_url = elgg_add_action_tokens_to_url("action/pages/delete?page={$pages->getGUID()}"); - add_submenu_item(elgg_echo('pages:delete'), $delete_url, 'pagesactions', true); -} - -//if the page has a parent, get it -if ($parent_page = get_entity(get_input("page_guid"))) { - $parent = $parent_page; +$container = elgg_get_page_owner(); +if (!$container) { } -$title = $pages->title; +$title = $page->title; -// Breadcrumbs -$body = elgg_view('pages/breadcrumbs', array('page_owner' => elgg_get_page_owner(), 'parent' => $parent)); +elgg_push_breadcrumb($container->name, $container->getURL()); +elgg_push_breadcrumb($title); -$body .= elgg_view_title($pages->title); -$body .= elgg_view_entity($pages, true); +$content = elgg_view_entity($page, true); +$content .= elgg_view_comments($page); -//add comments -$body .= elgg_view_comments($pages); +$sidebar = elgg_view('pages/sidebar/tree', array('page' => $page)); -pages_set_navigation_parent($pages); -$sidebar = elgg_view('pages/sidebar/tree'); +$buttons = ''; +if ($page->canEdit()) { + $url = "pg/pages/add/$page->guid"; + $buttons = elgg_view('output/url', array( + 'text' => elgg_echo('pages:newchild'), + 'href' => $url, + 'class' => 'elgg-action-button', + )); +} -$params = array( - 'content' => $body, - 'sidebar' => $sidebar -); -$body = elgg_view_layout('one_column_with_sidebar', $params); +$body = elgg_view_layout('content', array( + 'filter' => '', + 'buttons' => $buttons, + 'content' => $content, + 'title' => $title, + 'sidebar' => $sidebar, +)); -echo elgg_view_page($title, $body); \ No newline at end of file +echo elgg_view_page($title, $body); -- cgit v1.2.3