You are here

function template_preprocess_views_slideshow_slide_counter_widget in Views Slideshow 8.4

Views Slideshow: Slide Counter.

Related topics

File

./views_slideshow.theme.inc, line 392
The theme system, which controls the output of views slideshow.

Code

function template_preprocess_views_slideshow_slide_counter_widget(&$vars) {
  $vars['widget'] = [
    '#theme' => $vars['view']
      ->buildThemeFunctions('views_slideshow_slide_counter'),
    '#vss_id' => $vars['vss_id'],
    '#view' => $vars['view'],
    '#settings' => $vars['settings'],
    '#location' => $vars['location'],
    '#rows' => $vars['rows'],
  ];
}