You are here

theme.inc in Views Bootstrap 7.2

File

templates/table/theme.inc
View source
<?php

/**
 * Implementation of template preprocess for the view.
 */
function template_preprocess_views_bootstrap_table_plugin_style(&$vars) {
  template_preprocess_views_view_table($vars);
  $vars['classes_array'][] = 'table';
  foreach ($vars['options']['bootstrap_styles'] as $style) {
    $vars['classes_array'][] = 'table-' . $style;
  }
}

Functions

Namesort descending Description
template_preprocess_views_bootstrap_table_plugin_style Implementation of template preprocess for the view.