drupalhook-form-alter

hook_form_FORMID_alter not working


function send_xml_form_user_profile_form_alter(&$form, &$form_state){
    $form["#submit"][] = 'send_xml_edit_account_submit_function';
    drupal_set_message('<pre>' . print_r($form['#submit'], TRUE) . '</pre>');
}

function send_xml_edit_account_submit_function($form, &$form_state) {
    drupal_set_message(t("ahoy"));
}

the modules name is send_xml.module.

this code drupal_set_message('<pre>' . print_r($form['#submit'], TRUE) . '</pre>'); displays

Array
(
     [0] => user_profile_form_submit
     [1] => send_xml_edit_account_submit_function
)

but this code drupal_set_message(t("ahoy")); isnt displaying...

anyone ring a bell?

it's quite annoying to have problems which you cant find the reason why... does anyone experience this before? if yes, would please so kind to share your solutions to me. thank you very much! :)


Solution

  • There is no problem with the code you've pasted. I've tested it and it works fine ; I get "ahoy" displayed.

    Suggestions: