Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using mymodule_form_alter hook

I want to change values of fields of form after submit.

Anybody have an idea how to do this. I am using drupal7.

Here is the code

function check_domain_form_alter(&$form, &$form_state, $form_id) {
  switch ($form_id) {
    case "user_register_form":
      $form['#submit'][] = 'check_domain_user_register_form_submit';
      break;
  }
}

function check_domain_user_register_form_submit($form, &$form_state) {
  $form_state['input']['profile_main']['field_firm_company_name']['und'][0]['value']='test';
}
share|improve this question

2 Answers

up vote 2 down vote accepted

A submit handler is called too late in the process to do this...the values field values will already have been saved. Also you want to use $form_state['values'], not $form_state['input'].

If you move your code to a validate handler you should get more luck:

function check_domain_form_alter(&$form, &$form_state, $form_id) {
  switch ($form_id) {
    case "user_register_form":
      $form['#validate'][] = 'check_domain_user_register_form_validate';
      break;
  } 
}

function check_domain_user_register_form_validate($form, &$form_state) {
  $form_state['values']['profile_main']['field_firm_company_name']['und'][0]['value']='test';
}
share|improve this answer
Thanks a lot @Clive. it works fine – Rashmi Sep 4 '12 at 13:07

Try something like this,

function mymodule_form_alter(&$form, &$form_state, $form_id) {
  switch ($form_id) {
    case "your_form_id":
      $form['#submit'][] = 'mymodule_form_id_submit';
      break;
  }
}

function mymodule_form_id_submi($form, &$form_state) {
  // Do your stuff here.
  // echo "<pre>"; print_r($form_state['values']); exit;
}
share|improve this answer
i already did this.. but idt doesnot change values of fields – Rashmi Sep 4 '12 at 11:49
Can you please paste your code ? If we can see what you have done to change the values ? – Rikesh Sep 4 '12 at 11:52
i edit the question pls – Rashmi Sep 4 '12 at 11:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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