blob: e43a0ba731d50d6e032239f1557ff6b4097f411f (
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.Core
* @subpackage Widgets.Management
*/
$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(REFERER);
|