diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-12 16:26:19 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-12 16:26:19 +0000 |
commit | 555c4065732ec8a5795943cb4ae3a61e675825ec (patch) | |
tree | b2c3bfed3e5f3e284a4358a8664d812dbf2df745 /actions | |
parent | b9668e7755955bd986874275d750a5f00ab9751e (diff) | |
download | elgg-555c4065732ec8a5795943cb4ae3a61e675825ec.tar.gz elgg-555c4065732ec8a5795943cb4ae3a61e675825ec.tar.bz2 |
Widget API changes, as well as edit and action infrastructure
git-svn-id: https://code.elgg.org/elgg/trunk@896 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions')
-rw-r--r-- | actions/widgets/save.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/actions/widgets/save.php b/actions/widgets/save.php new file mode 100644 index 000000000..b50010e6f --- /dev/null +++ b/actions/widgets/save.php @@ -0,0 +1,34 @@ +<?php
+
+ /**
+ * Elgg widget save action
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ $guid = get_input('guid');
+ $params = get_input('params');
+ $pageurl = get_input('pageurl');
+
+ $result = false;
+
+ if (!empty($guid)) {
+
+ $result = save_widget_info($guid,$params);
+
+ }
+
+ if ($result) {
+ system_message('widgets:save:success');
+ } else {
+ system_message('widgets:save:failure');
+ }
+
+ forward($_SERVER['HTTP_REFERER']);
+
+?>
\ No newline at end of file |