Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. function send_xml_form_user_profile_form_alter(&$form, &$form_state){
  2. $form["#submit"][] = 'send_xml_edit_account_submit_function';
  3. drupal_set_message('<pre>' . print_r($form['#submit'], TRUE) . '</pre>');
  4. }
  5.  
  6. function send_xml_edit_account_submit_function($form, &$form_state) {
  7. drupal_set_message(t("ahoy"));
  8. }
  9.  
  10. Array
  11. (
  12. [0] => user_profile_form_submit
  13. [1] => send_xml_edit_account_submit_function
  14. )
  15.  
  16. function hook_form_FORM_ID_alter(&$form, &$form_state, $form_id) {
  17. // your code
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement