blob: eab650c9cd5296e417e931dc166c5612c5319994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
/**
* Elgg widget move action
*
* @package Elgg.Core
* @subpackage Widgets.Management
*/
$widget_guid = get_input('widget_guid');
$column = get_input('column', 1);
$position = get_input('position');
$owner_guid = get_input('owner_guid', elgg_get_logged_in_user_guid());
$widget = get_entity($widget_guid);
$owner = get_entity($owner_guid);
if ($widget && $owner->canEdit()) {
$widget->move($column, $position);
forward(REFERER);
}
register_error(elgg_echo('widgets:move:failure'));
forward(REFERER);
|