aboutsummaryrefslogtreecommitdiff
path: root/actions/widgets/reorder.php
blob: fbc8c537919ec49442c199695ad03c618f2fda89 (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 reorder action
 *
 * @package Elgg
 * @subpackage Core
 */

$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']);