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 | |
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')
-rw-r--r-- | actions/widgets/add.php | 63 | ||||
-rw-r--r-- | actions/widgets/reorder.php | 46 | ||||
-rw-r--r-- | actions/widgets/save.php | 56 |
3 files changed, 71 insertions, 94 deletions
diff --git a/actions/widgets/add.php b/actions/widgets/add.php index 14653eb18..66d133195 100644 --- a/actions/widgets/add.php +++ b/actions/widgets/add.php @@ -1,43 +1,32 @@ <?php +/** + * Elgg widget add action + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ - /** - * Elgg widget add action - * - * @package Elgg - * @subpackage Core +$guid = get_input('user'); +$handler = get_input('handler'); +$context = get_input('context'); +$column = get_input('column'); - * @author Curverider Ltd +$result = false; - * @link http://elgg.org/ - */ - - $guid = get_input('user'); - $handler = get_input('handler'); - $context = get_input('context'); - $column = get_input('column'); - - $result = false; - - if (!empty($guid)) { - - if ($user = get_entity($guid)) { - - if ($user->canEdit()) { - - $result = add_widget($user->getGUID(),$handler,$context,0,$column); - - } - - } - - } - - if ($result) { - system_message(elgg_echo('widgets:save:success')); - } else { - register_error(elgg_echo('widgets:save:failure')); +if (!empty($guid)) { + if ($user = get_entity($guid)) { + if ($user->canEdit()) { + $result = add_widget($user->getGUID(),$handler,$context,0,$column); } - - 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 +forward($_SERVER['HTTP_REFERER']);
\ No newline at end of file diff --git a/actions/widgets/reorder.php b/actions/widgets/reorder.php index 3e3a98ebb..9398630ca 100644 --- a/actions/widgets/reorder.php +++ b/actions/widgets/reorder.php @@ -1,32 +1,26 @@ <?php +/** + * Elgg widget reorder action + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ - /** - * Elgg widget reorder action - * - * @package Elgg - * @subpackage Core +$owner = get_input('owner'); +$context = get_input('context'); - * @author Curverider Ltd +$maincontent = get_input('debugField1'); +$sidebar = get_input('debugField2'); +$rightbar = get_input('debugField3'); - * @link http://elgg.org/ - */ +$result = reorder_widgets_from_panel($maincontent, $sidebar, $rightbar, $context, $owner); +if ($result) { + system_message(elgg_echo('widgets:panel:save:success')); +} else { + register_error(elgg_echo('widgets:panel:save:failure')); +} - $owner = get_input('owner'); - $context = get_input('context'); - - $maincontent = get_input('debugField1'); - $sidebar = get_input('debugField2'); - $rightbar = get_input('debugField3'); - - $result = reorder_widgets_from_panel($maincontent, $sidebar, $rightbar, $context, $owner); - - if ($result) { - system_message(elgg_echo('widgets:panel:save:success')); - } else { - register_error(elgg_echo('widgets:panel:save:failure')); - } - - forward($_SERVER['HTTP_REFERER']); - -?>
\ No newline at end of file +forward($_SERVER['HTTP_REFERER']);
\ No newline at end of file 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 |