aboutsummaryrefslogtreecommitdiff
path: root/actions/widgets/add.php
blob: 14653eb18913fca8ade25ea66d9ce01122fdd83a (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
33
34
35
36
37
38
39
40
41
42
43
<?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']);

?>