up vote 0 down vote favorite
share [g+] share [fb]

Is there any way (without using core Profile) to add two fields to the user registration form with Content Type Profile, OR, using Form API to add two fields to save into a content profile node created from user registration?

Is there anyway to intercept user_save while its creating that user and add the fields to the profile node or is there some easier way?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You sir, will just love hook_user() (http://api.drupal.org/api/function/hook_user)

An example of how it will work for you in practice:

function yourmodule_user ($op, &$edit, &$account, $category = NULL) {
  switch ($op) {
    case 'form':
      return yourmodule_add_two_elements_to_the_form();
      break
    case 'update':
      // Intercept the user_save and modift the object before saving
    case 'after-update':
      // Modify the object after the save is complete
  }
}
link|improve this answer
1  
There's also a way to do this using template.php if you don't have a helper module to work this. Let me know if this is he case and I'll add an example to my response. – anschauung Sep 2 '10 at 23:01
No, this would be part of a custom module I am making to have a multistep registration form with CTools object cache. I will try this out. – Kevin Sep 2 '10 at 23:07
This answer + stackoverflow.com/questions/3343783/… worked for me thanks – Kevin Sep 3 '10 at 16:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.