You are here

theme.inc in Views Bootstrap 7.3

Preprocessors and helper functions for theme theming.

File

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

/**
 * @file
 * Preprocessors and helper functions for theme theming.
 */

/**
 * Implementation of template preprocess for the view.
 */
function template_preprocess_views_bootstrap_table_plugin_style(&$vars) {
  template_preprocess_views_view_table($vars);
  $vars['responsive'] = $vars['options']['responsive'];
  $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.