diff options
Diffstat (limited to 'mod/externalpages/actions')
-rw-r--r-- | mod/externalpages/actions/add.php | 54 | ||||
-rw-r--r-- | mod/externalpages/actions/addfront.php | 48 | ||||
-rw-r--r-- | mod/externalpages/actions/edit.php | 25 |
3 files changed, 25 insertions, 102 deletions
diff --git a/mod/externalpages/actions/add.php b/mod/externalpages/actions/add.php deleted file mode 100644 index fed637c55..000000000 --- a/mod/externalpages/actions/add.php +++ /dev/null @@ -1,54 +0,0 @@ -<?php - - /** - * Elgg external pages: add/edit - * - * @package ElggExPages - */ - - // 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; - - //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 = get_loggedin_userid(); - // 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(REFERER); - } - - // Success message - system_message(elgg_echo("expages:posted")); - // add to river - add_to_river('river/expages/create','create',get_loggedin_userid(),$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 diff --git a/mod/externalpages/actions/addfront.php b/mod/externalpages/actions/addfront.php deleted file mode 100644 index f0a457df9..000000000 --- a/mod/externalpages/actions/addfront.php +++ /dev/null @@ -1,48 +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 - */ - - // 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 = get_loggedin_userid(); - // For now, set its access to public - $frontpage->access_id = ACCESS_PUBLIC; - // 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"); - -?> diff --git a/mod/externalpages/actions/edit.php b/mod/externalpages/actions/edit.php new file mode 100644 index 000000000..edfffe168 --- /dev/null +++ b/mod/externalpages/actions/edit.php @@ -0,0 +1,25 @@ +<?php +/** + * Elgg external pages: add/edit + * + */ + +// Get input data +$contents = get_input('expagescontent', '', false); +$type = get_input('content_type'); +$previous_guid = get_input('expage_guid'); + +// create object to hold the page details +$expages = new ElggObject(); +$expages->subtype = $type; +$expages->owner_guid = get_loggedin_userid(); +$expages->access_id = ACCESS_PUBLIC; +$expages->title = $type; +$expages->description = $contents; +if (!$expages->save()) { + register_error(elgg_echo("expages:error")); + forward(REFERER); +} + +system_message(elgg_echo("expages:posted")); +forward(REFERER); |