aboutsummaryrefslogtreecommitdiff
path: root/actions/widgets/add.php
blob: ff4af4a47b9e4321c9ce71f9927d4f1e67f2d643 (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
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2009
	 * @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']);

?>