aboutsummaryrefslogtreecommitdiff
path: root/actions/widgets/move.php
blob: 2edc7912e64b1a30ae57fb50d3658be5e3f648b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 = elgg_get_logged_in_user_entity();

$widget = get_entity($guid);
if ($widget && $user->canEdit()) {
	$widget->move($column, $position);
	forward(REFERER);
}

register_error(elgg_echo('widgets:move:failure'));
forward(REFERER);