Відповіді:
Як правило, це робиться в MYTHEME_preprocess_field_collection_item (), але елементи збору польових даних не мають власної попередньої обробки. На щастя, вони є сутностями, тому ви можете використовувати попередню обробку сутності для створення власної функції попередньої обробки колекції:
/**
* Implements template_preprocess_entity().
*/
function MYTHEME_preprocess_entity(&$variables, $hook) {
$function = 'MYTHEME_preprocess_' . $variables['entity_type'];
if (function_exists($function)) {
$function($variables, $hook);
}
}
/**
* Field Collection-specific implementation of template_preprocess_entity().
*/
function MYTHEME_preprocess_field_collection_item(&$variables) {
$variables['classes_array'][] = 'your-class-here';
// Plus whatever other preprocessing you want to do.
}