You are here

function theme_views_slideshow_slide_counter_widget_render in Views Slideshow 7.3

Same name and namespace in other branches
  1. 6.3 theme/views_slideshow.theme.inc \theme_views_slideshow_slide_counter_widget_render()

Views Slideshow: Slide Counter.

Parameters

array $vars: Theme variables.

Return value

string The html string for the counter widget.

Related topics

File

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

Code

function theme_views_slideshow_slide_counter_widget_render($vars) {
  return theme(views_theme_functions('views_slideshow_slide_counter', $vars['view'], $vars['view']->display[$vars['view']->current_display]), array(
    'vss_id' => $vars['vss_id'],
    'view' => $vars['view'],
    'settings' => $vars['settings'],
    'location' => $vars['location'],
    'rows' => $vars['rows'],
  ));
}