Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function MYMODULENAME_form_alter(&$form, &$form_state, $form_id) {
  2. if($form_id == 'page_node_form') {
  3. //Adds a class to 'my image' field in the node edit form of content-type page.
  4. //print_r($form);
  5. $form['field_my_image']['#prefix']=''; //div class="myclass_name"
  6. $form['field_my_image']['#suffix']='';//Close div here
  7. //OR
  8. $form['field_my_image']['#attributes']['class'][]='myclass_name';
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement