From b1177c028d19aef4abd18e87ffdb398df0f6f24a Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 21 Apr 2008 17:26:51 +0000 Subject: Introduced profile plugin git-svn-id: https://code.elgg.org/elgg/trunk@511 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/profile/actions/edit.php | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 mod/profile/actions/edit.php (limited to 'mod/profile/actions/edit.php') diff --git a/mod/profile/actions/edit.php b/mod/profile/actions/edit.php new file mode 100644 index 000000000..4bcecdb56 --- /dev/null +++ b/mod/profile/actions/edit.php @@ -0,0 +1,40 @@ + + * @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")); + } + +?> \ No newline at end of file -- cgit v1.2.3