You are here

function template_preprocess_views_bootstrap_carousel_plugin_rows in Views Bootstrap 7.2

Same name and namespace in other branches
  1. 7.3 templates/carousel/theme.inc \template_preprocess_views_bootstrap_carousel_plugin_rows()
  2. 7 templates/carousel/theme.inc \template_preprocess_views_bootstrap_carousel_plugin_rows()

Implementation of template preprocess for the view fields.

File

templates/carousel/theme.inc, line 35

Code

function template_preprocess_views_bootstrap_carousel_plugin_rows(&$vars) {
  $view =& $vars['view'];
  foreach ($vars['options'] as $id => $field) {
    if (isset($view->field[$field])) {
      $vars[$id] = $view->style_plugin
        ->get_field($view->row_index, $field);
    }
  }
}