aboutsummaryrefslogtreecommitdiff
path: root/actions/widgets/add.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/widgets/add.php')
-rw-r--r--actions/widgets/add.php63
1 files changed, 26 insertions, 37 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