aboutsummaryrefslogtreecommitdiff
path: root/actions/widgets/add.php
blob: 42d884a02d0da5c56074a37511c345fc6a9a281c (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
25
26
27
28
29
30
<?php
/**
 * Elgg widget add action
 *
 * @package Elgg
 * @subpackage Core
 */

$guid = get_input('user');
$handler = get_input('handler');
$context = get_input('context');
$column = get_input('column');

$result = false;

if (!empty($guid)) {
	if ($user = get_entity($guid)) {
		if ($user->canEdit()) {
			$result = add_widget($user->getGUID(),$handler,$context,0,$column);
		}
	}
}

if ($result) {
	system_message(elgg_echo('widgets:save:success'));
} else {
	register_error(elgg_echo('widgets:save:failure'));
}

forward($_SERVER['HTTP_REFERER']);