You are here

function theme_views_slideshow_singleframe_control_pause in Views Slideshow 6.2

Views Slideshow: "pause" control.

1 theme call to theme_views_slideshow_singleframe_control_pause()
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 229
Theme & preprocess functions for the Views Slideshow: SingleFrame module.

Code

function theme_views_slideshow_singleframe_control_pause($vss_id, $view, $options) {
  return l(t('Pause'), '', array(
    'attributes' => array(
      'class' => 'views_slideshow_singleframe_pause views_slideshow_pause',
      'id' => "views_slideshow_singleframe_playpause_" . $vss_id,
    ),
    'fragment' => ' ',
    'external' => TRUE,
  ));
}