You are here

function theme_views_slideshow_singleframe_pager in Views Slideshow 6.2

Views Slideshow: pager.

1 theme call to theme_views_slideshow_singleframe_pager()
template_preprocess_views_slideshow_singleframe in contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc
Implements template_preprocess_hook_THEMENAME().

File

contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc, line 261
Theme & preprocess functions for the Views Slideshow: SingleFrame module.

Code

function theme_views_slideshow_singleframe_pager($vss_id, $view, $options) {
  $pager_type = $options['views_slideshow_singleframe']['pager_type'];
  $attributes['class'] = "views_slideshow_singleframe_pager views_slideshow_pager{$pager_type}";
  $attributes['id'] = "views_slideshow_singleframe_pager_" . $vss_id;
  $attributes = drupal_attributes($attributes);
  return "<div{$attributes}></div>";
}