diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-14 20:41:19 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-14 20:41:19 +0000 |
commit | 12d286988dbcdff5aad3620838e7ab777ac67a92 (patch) | |
tree | 9d73437fbfb39f3f9f3c27852e70ec1f71aed0eb /actions/widgets/save.php | |
parent | 501c0e13cc4db687abb36a937709f8e9de643339 (diff) | |
download | elgg-12d286988dbcdff5aad3620838e7ab777ac67a92.tar.gz elgg-12d286988dbcdff5aad3620838e7ab777ac67a92.tar.bz2 |
Standardized actions/*
git-svn-id: http://code.elgg.org/elgg/trunk@3542 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/widgets/save.php')
-rw-r--r-- | actions/widgets/save.php | 56 |
1 files changed, 25 insertions, 31 deletions
diff --git a/actions/widgets/save.php b/actions/widgets/save.php index 6fdf79c11..60861acb8 100644 --- a/actions/widgets/save.php +++ b/actions/widgets/save.php @@ -1,38 +1,32 @@ <?php +/** + * Elgg widget save action + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ - /** - * Elgg widget save action - * - * @package Elgg - * @subpackage Core +action_gatekeeper(); - * @author Curverider Ltd +$guid = get_input('guid'); +$params = $_REQUEST['params']; +$pageurl = get_input('pageurl'); +$noforward = get_input('noforward',false); - * @link http://elgg.org/ - */ +$result = false; - action_gatekeeper(); - - $guid = get_input('guid'); - $params = $_REQUEST['params']; - $pageurl = get_input('pageurl'); - $noforward = get_input('noforward',false); +if (!empty($guid)) { + $result = save_widget_info($guid,$params); +} - $result = false; - - if (!empty($guid)) { - - $result = save_widget_info($guid,$params); - - } - - if ($result) { - system_message(elgg_echo('widgets:save:success')); - } else { - register_error(elgg_echo('widgets:save:failure')); - } - - if (!$noforward) - forward($_SERVER['HTTP_REFERER']); +if ($result) { + system_message(elgg_echo('widgets:save:success')); +} else { + register_error(elgg_echo('widgets:save:failure')); +} -?>
\ No newline at end of file +if (!$noforward) { + forward($_SERVER['HTTP_REFERER']); +}
\ No newline at end of file |