Guest User

Untitled

a guest
Jan 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. function lifecenter_comment_form_alter(&$form, &$form_state, $form_state) {
  5. var_dump($form_state);
  6. switch ($form_state) {
  7.  
  8.  
  9. case 'middle_banner_node_form':
  10.  
  11. dpm($form);
  12.  
  13.  
  14.  
  15. break;
  16. case 'comment_form':
  17.  
  18. dpm($form);
  19. unset($form["guidelines"]);
  20. unset($form['homepage']);
  21. unset($form['mail']);
  22. unset($form['subject']);
  23. unset($form['preview']);
  24. unset($form['author']);
  25.  
  26. break;
  27.  
  28.  
  29. default:
  30.  
  31.  
  32. }
  33.  
  34. }
Add Comment
Please, Sign In to add comment