You are here

function template_preprocess_views_bootstrap_list_group_plugin_style in Views Bootstrap 7.3

Implementation of template preprocess for the view.

File

templates/list_group/theme.inc, line 11
Preprocessors and helper functions for list group theming.

Code

function template_preprocess_views_bootstrap_list_group_plugin_style(&$vars) {
  $view = $vars['view'];
  $link_field = $vars['options']['link_field'];
  $vars['linked_items'] = !empty($link_field);
  $vars['panels'] = isset($vars['options']['panels']) ? $vars['options']['panels'] : FALSE;
  foreach (array_keys($vars['rows']) as $key) {
    $vars['link_fields'][$key] = $view->style_plugin
      ->get_field($key, $link_field);
  }
}