You are here

function fb_instant_articles_display_preprocess_field in Facebook Instant Articles 7

Same name and namespace in other branches
  1. 7.2 modules/fb_instant_articles_display/fb_instant_articles_display.module \fb_instant_articles_display_preprocess_field()

Implements hook_preprocess_HOOK().

File

modules/fb_instant_articles_display/fb_instant_articles_display.module, line 211
Hook implementations for Facebook Instant Articles Display module.

Code

function fb_instant_articles_display_preprocess_field(&$vars) {
  $element = $vars['element'];
  if ($element['#view_mode'] == 'fb_instant_article') {
    $vars['theme_hook_suggestions'][] = 'field__fb_instant_article';
  }
}