From c1c2563fc1cd451afaf735350eb1c576740be2f4 Mon Sep 17 00:00:00 2001 From: cash Date: Sun, 13 Feb 2011 22:19:14 +0000 Subject: swapping sitepages for externalpages since the external pages is easier to integrate into 1.8 . sitepages needs more work before it is ready for release (plus we would need an upgrade script) git-svn-id: http://code.elgg.org/elgg/trunk@8206 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/externalpages/actions/add.php | 54 ++++++++++++++++++++++++++++++++++ mod/externalpages/actions/addfront.php | 48 ++++++++++++++++++++++++++++++ 2 files changed, 102 insertions(+) create mode 100644 mod/externalpages/actions/add.php create mode 100644 mod/externalpages/actions/addfront.php (limited to 'mod/externalpages/actions') diff --git a/mod/externalpages/actions/add.php b/mod/externalpages/actions/add.php new file mode 100644 index 000000000..fed637c55 --- /dev/null +++ b/mod/externalpages/actions/add.php @@ -0,0 +1,54 @@ +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 new file mode 100644 index 000000000..f0a457df9 --- /dev/null +++ b/mod/externalpages/actions/addfront.php @@ -0,0 +1,48 @@ +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"); + +?> -- cgit v1.2.3