aboutsummaryrefslogtreecommitdiff
path: root/mod/externalpages/actions
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-04 00:59:34 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-04 00:59:34 +0000
commit354d9eebf2c84b66f1103a61a8f4ffa832f350b6 (patch)
treea893e0cb765fddcbea6be6eea00f597907bbf114 /mod/externalpages/actions
parentaff69d65ead2b3e7cb702a852761b2bbe5398c5e (diff)
downloadelgg-354d9eebf2c84b66f1103a61a8f4ffa832f350b6.tar.gz
elgg-354d9eebf2c84b66f1103a61a8f4ffa832f350b6.tar.bz2
Updated external pages to new interface.
git-svn-id: http://code.elgg.org/elgg/trunk@5268 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/externalpages/actions')
-rw-r--r--mod/externalpages/actions/addfront.php52
1 files changed, 0 insertions, 52 deletions
diff --git a/mod/externalpages/actions/addfront.php b/mod/externalpages/actions/addfront.php
deleted file mode 100644
index e7dc167c6..000000000
--- a/mod/externalpages/actions/addfront.php
+++ /dev/null
@@ -1,52 +0,0 @@
-<?php
-
- /**
- * Elgg front pages: add/edit
- * Here we use the title field for the lefthand side and the description for the righthand side
- *
- * @package ElggExPages
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd <info@elgg.com>
- * @copyright Curverider Ltd 2008-2010
- * @link http://elgg.org/
- */
-
- // Make sure we're logged as admin
- admin_gatekeeper();
-
- // Get input data
- $contents_left = get_input('front_left', '', false);
- $contents_right = get_input('front_right', '', false);
- $previous_guid = get_input('front_guid');
-
- //remove the old front page
- if(get_entity($previous_guid)){
- delete_entity($previous_guid);
- }
-
- // Initialise a new ElggObject
- $frontpage = new ElggObject();
- // Tell the system what type of external page it is
- $frontpage->subtype = "front";
- // Set its owner to the current user
- $frontpage->owner_guid = $_SESSION['user']->getGUID();
- // For now, set its access to public
- $frontpage->access_id = 2;
- // Set its title and description appropriately
- $frontpage->title = $contents_left;
- $frontpage->description = $contents_right;
-
- // Before we can set metadata, save
- if (!$frontpage->save()) {
- register_error(elgg_echo("expages:error"));
- forward("pg/expages/index.php?type=front");
- }
-
- // Success message
- system_message(elgg_echo("expages:posted"));
-
-
- // Forward back to the page
- forward("pg/expages/index.php?type=front");
-
-?>