aboutsummaryrefslogtreecommitdiff
path: root/actions/widgets/move.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/widgets/move.php')
-rw-r--r--actions/widgets/move.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/actions/widgets/move.php b/actions/widgets/move.php
new file mode 100644
index 000000000..2747c149f
--- /dev/null
+++ b/actions/widgets/move.php
@@ -0,0 +1,22 @@
+<?php
+/**
+ * Elgg widget move action
+ *
+ * @package Elgg.Core
+ * @subpackage Widgets.Management
+ */
+
+$guid = get_input('guid');
+$column = get_input('column', 1);
+$position = get_input('position');
+
+$user = get_loggedin_user();
+
+$widget = get_entity($guid);
+if ($widget && $user->canEdit()) {
+ elgg_move_widget($widget, $widget->context, $column, $position);
+ forward(REFERER);
+}
+
+register_error(elgg_echo('widgets:move:failure'));
+forward(REFERER); \ No newline at end of file