diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-19 17:00:29 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-19 17:00:29 +0000 |
commit | dd2b918ab71c2ed0c05375fafed588146e48c4de (patch) | |
tree | fba1dc87d70ed657e3280b314b45cbdcc4042d88 /mod/externalpages/actions | |
parent | 209e7b65d0beabb06927af8204369a7374afcd82 (diff) | |
download | elgg-dd2b918ab71c2ed0c05375fafed588146e48c4de.tar.gz elgg-dd2b918ab71c2ed0c05375fafed588146e48c4de.tar.bz2 |
The Externalpages plugin is now Site Pages. Removing old plugin.
git-svn-id: http://code.elgg.org/elgg/trunk@6097 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/externalpages/actions')
-rw-r--r-- | mod/externalpages/actions/add.php | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/mod/externalpages/actions/add.php b/mod/externalpages/actions/add.php deleted file mode 100644 index 79f16bad5..000000000 --- a/mod/externalpages/actions/add.php +++ /dev/null @@ -1,68 +0,0 @@ -<?php - - /** - * Elgg external pages: add/edit - * - * @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 = get_input('expagescontent', '', false); - $type = get_input('content_type'); - $previous_guid = get_input('expage_guid'); - - // Cache to the session - $_SESSION['expages_content'] = $contents; - $_SESSION['expagestype'] = $type; - - // Make sure the content exists - if (empty($contents)) { - register_error(elgg_echo("expages:blank")); - forward("mod/expages/add.php"); - - // Otherwise, save the new external page - } else { - - //remove the old external page - if(get_entity($previous_guid)){ - delete_entity($previous_guid); - } - - // Initialise a new ElggObject - $expages = new ElggObject(); - // Tell the system what type of external page it is - $expages->subtype = $type; - // Set its owner to the current user - $expages->owner_guid = $_SESSION['user']->getGUID(); - // For now, set its access to public - $expages->access_id = ACCESS_PUBLIC; - // Set its title and description appropriately - $expages->title = $type; - $expages->description = $contents; - // Before we can set metadata, save - if (!$expages->save()) { - register_error(elgg_echo("expages:error")); - forward("mod/expages/add.php"); - } - - // Success message - system_message(elgg_echo("expages:posted")); - // add to river - add_to_river('river/expages/create','create',$_SESSION['user']->guid,$expages->guid); - // Remove the cache - unset($_SESSION['expages_content']); unset($_SESSION['expagestitle']); - - - // Forward back to the page - forward("pg/expages/index.php?type={$type}"); - - } - -?>
\ No newline at end of file |