You are here

theme.inc in Views Bootstrap 7

File

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

/**
 * Implementation of template preprocess for the view.
 */
function template_preprocess_views_bootstrap_carousel_plugin_style(&$vars) {

  //--
}

/**
 * Implementation of template preprocess for the view fields.
 */
function template_preprocess_views_bootstrap_carousel_plugin_rows(&$vars) {
  $view =& $vars['view'];
  foreach ($vars['options'] as $id => $field) {
    if ($field) {
      $vars[$id] = $view->field[$field]
        ->theme($vars['row']);
    }
  }
}

Functions

Namesort descending Description
template_preprocess_views_bootstrap_carousel_plugin_rows Implementation of template preprocess for the view fields.
template_preprocess_views_bootstrap_carousel_plugin_style Implementation of template preprocess for the view.