You are here

function theme_views_slideshow_singleframe_control_next in Views Slideshow 6.2

Views Slideshow: "next" control.

1 theme call to theme_views_slideshow_singleframe_control_next()
theme_views_slideshow_singleframe_controls in contrib/views_slideshow_singleframe/views_slideshow_singleframe.theme.inc
The slideshow controls.

File

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

Code

function theme_views_slideshow_singleframe_control_next($vss_id, $view, $options) {
  return l(t('Next'), '#', array(
    'attributes' => array(
      'class' => 'views_slideshow_singleframe_next views_slideshow_next',
      'id' => "views_slideshow_singleframe_next_" . $vss_id,
    ),
    'fragment' => ' ',
    'external' => TRUE,
  ));
}