Hello i need to insert data in my tables after user creation ... i think to use hook_form_alter for $form_id="user_register" but i don't know how to say "after you created user... do this". How can i do it in form_alter?

Thanks and greetings c.

link|improve this question

56% accept rate
feedback

1 Answer

up vote 5 down vote accepted

You can add custom submit handler to forms like this.

function hook_form_user_register_alter(&$form, &$form_state) {
    // ...
    $form['#submit'][] = 'yourModule_user_register_submit';
}

function yourModule_user_register_submit($form, &$form_state) {
    // do what you want to do after registration
}

I'd also recommend to use Drupal's Triggers & Actions to achieve this. AFAIK there was a bug with one of the triggers that fire after user registration. Don't know if that has been fixed.

link|improve this answer
thank you very much !! – Cris Jan 24 '11 at 10:02
Hey Rik,Thanks a lot for this easy and quick solution. Good Luck – Umar Jan 16 at 8:47
feedback

Your Answer

 
or
required, but never shown

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