aboutsummaryrefslogtreecommitdiff
path: root/mod/externalpages/actions
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-13 22:19:14 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-13 22:19:14 +0000
commitc1c2563fc1cd451afaf735350eb1c576740be2f4 (patch)
treec101b4050ee0fbc356699276590bd7138e7ddbdb /mod/externalpages/actions
parentb42125b50f3fcd518ef058211a318ce5c6b66e1b (diff)
downloadelgg-c1c2563fc1cd451afaf735350eb1c576740be2f4.tar.gz
elgg-c1c2563fc1cd451afaf735350eb1c576740be2f4.tar.bz2
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
Diffstat (limited to 'mod/externalpages/actions')
-rw-r--r--mod/externalpages/actions/add.php54
-rw-r--r--mod/externalpages/actions/addfront.php48
2 files changed, 102 insertions, 0 deletions
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 @@
+<?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
new file mode 100644
index 000000000..f0a457df9
--- /dev/null
+++ b/mod/externalpages/actions/addfront.php
@@ -0,0 +1,48 @@
+<?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");
+
+?>