aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/edit.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-19 15:19:02 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-19 15:19:02 +0000
commitb5e2dbf292cddd56a8171b4c9cf1d9cf0fb45582 (patch)
treeaa7f916fba9fc61869f71492266d537f34e4d736 /mod/pages/edit.php
parente603c947a5ae2869164b11fee827d4c595e4a3f8 (diff)
downloadelgg-b5e2dbf292cddd56a8171b4c9cf1d9cf0fb45582.tar.gz
elgg-b5e2dbf292cddd56a8171b4c9cf1d9cf0fb45582.tar.bz2
Fixes #3158 updated search and pages plugins for page handler scripts
git-svn-id: http://code.elgg.org/elgg/trunk@8769 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/pages/edit.php')
-rw-r--r--mod/pages/edit.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/mod/pages/edit.php b/mod/pages/edit.php
deleted file mode 100644
index 8e530084b..000000000
--- a/mod/pages/edit.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-/**
- * Edit a page
- *
- * @package ElggPages
- */
-
-gatekeeper();
-
-$page_guid = get_input('guid');
-$page = get_entity($page_guid);
-if (!$page) {
-
-}
-
-$container = $page->getContainerEntity();
-if (!$container) {
-
-}
-
-elgg_set_page_owner_guid($container->getGUID());
-
-elgg_push_breadcrumb($page->title, $page->getURL());
-elgg_push_breadcrumb(elgg_echo('edit'));
-
-$title = elgg_echo("pages:edit");
-
-if ($page->canEdit()) {
- $vars = pages_prepare_form_vars($page);
- $content = elgg_view_form('pages/edit', array(), $vars);
-} else {
- $content = elgg_echo("pages:noaccess");
-}
-
-$body = elgg_view_layout('content', array(
- 'filter' => '',
- 'buttons' => '',
- 'content' => $content,
- 'title' => $title,
-));
-
-echo elgg_view_page($title, $body);