blob: 66d1331953d662d3df2b10bde59f7b07efd3ff39 (
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
31
32
|
<?php
/**
* Elgg widget add action
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*/
$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']);
|