From dd2b918ab71c2ed0c05375fafed588146e48c4de Mon Sep 17 00:00:00 2001 From: brettp Date: Wed, 19 May 2010 17:00:29 +0000 Subject: 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 --- mod/externalpages/actions/add.php | 68 --------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 mod/externalpages/actions/add.php (limited to 'mod/externalpages/actions') 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 @@ - - * @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 -- cgit v1.2.3