aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/actions/edit.php
blob: 4bcecdb565c0c17482fbd833ebed1ec135afe3a2 (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
<?php

	/**
	 * Elgg profile plugin edit action
	 * 
	 * @package ElggProfile
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Ben Werdmuller <ben@curverider.co.uk>
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.com/
	 */
		
	// Get profile fields
		$aboutme = get_input('aboutme');
		$location = string_to_tag_array(get_input('location'));
		$skills = string_to_tag_array(get_input('skills'));
		$interests = string_to_tag_array(get_input('interests'));
		
	// Save stuff if we can, and forward to the user's profile
		$user = $_SESSION['user'];
		if ($user->canEdit()) {
			
			// Save stuff
			$user->description = $aboutme;
			$user->save();
			$user->location = $location;
			$user->skills = $skills;
			$user->interests = $interests;
			system_message(elgg_echo("profile:saved"));
			
			// Forward to the user's profile
			forward($user->getUrl());

		} else {
	// If we can't, display an error
			
			system_message(elgg_echo("profile:cantedit"));
		}

?>