Current time: 01-09-2009, 12:19 PM Hello There, Guest! (LoginRegister)


Post Reply 
usercp, update profile problem
08-04-2008, 10:48 AM
Post: #1
usercp, update profile problem
Hello,

I'm new in writing plugins into mybb, php i know quite-well (but i hate). I have to add few fields into profile, i done the "templates action", so, input form i have, but i can't save it into db. It's missing hook in the middle of "usercp_do_profile_start" and "usercp_do_profile_end". You know, after $user declaration, before saving it into db. So, my question is: How to append new items into $user before saving?

Regards,
Kacper.
Find all posts by this user
Quote this message in a reply
08-04-2008, 10:57 AM
Post: #2
RE: usercp, update profile problem
Use this hook
Code:
$plugins->add_hook('datahandler_user_update', 'do_action');

PHP Code:
function do_action($update)
{
    
$update->user_update_data['FIELDNAME'] = USER_INPUT;


Visit this user's website Find all posts by this user
Quote this message in a reply
08-04-2008, 11:01 AM (This post was last modified: 08-04-2008 11:01 AM by pagenoare.)
Post: #3
RE: usercp, update profile problem
Thanks! Works good.

Kacper.
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: