Guest User

Untitled

a guest
Jan 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function mymodule_form_alter(&$form, &$form_state, $form_id) {
  2. //here's some code like
  3. // if ($contenttype == 'article') {
  4. //add more fields
  5.  
  6. $form['#tree'] = TRUE;
  7. $form['#submit'][] = 'mymodule_submit';
  8.  
  9. //}
  10.  
  11. }
  12.  
  13. function mymodule_submit($form, &$form_state) {
  14. drupal_set_message('The form has been submitted');
  15. dpm($form_state);
  16. }
Add Comment
Please, Sign In to add comment