aboutsummaryrefslogtreecommitdiff
path: root/actions/widgets/save.php
blob: b1649cc17dd2cd454938fe3058251129dc25118c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
 * Elgg save widget settings action
 *
 * @package Elgg.Core
 * @subpackage Widgets.Management
 */

elgg_set_context('widgets');

$guid = get_input('guid');
$params = get_input('params');

$widget = get_entity($guid);
if ($widget && $widget->saveSettings($params)) {
	elgg_set_page_owner_guid($widget->getContainerGUID());
	$view = "widgets/$widget->handler/content";
	echo elgg_view($view, array('entity' => $widget));
} else {
	register_error(elgg_echo('widgets:save:failure'));
}

forward(REFERER);