Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. /**
  2. * Invokes hook_preprocess_HOOK().
  3. *
  4. * Supplants template_preprocess_field().
  5. */
  6. function hook_preprocess_field(&$vars){
  7. $vars["item_attributes_array"][0]["class"][] = "first";
  8. $vars['classes_array'][] = 'ThisWorks';
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement