function views_slideshow_singleframe_theme in Views Slideshow 6.2
Implements hook_theme().
File
- contrib/
views_slideshow_singleframe/ views_slideshow_singleframe.module, line 35 - Views Slideshow: SingleFrame is typically used for field views.
Code
function views_slideshow_singleframe_theme($existing, $type, $theme, $path) {
return array(
'views_slideshow_singleframe' => array(
'arguments' => array(
'view' => NULL,
'options' => array(),
'rows' => array(),
'title' => '',
),
'template' => 'views-slideshow-singleframe',
'file' => 'views_slideshow_singleframe.theme.inc',
),
'views_slideshow_singleframe_controls' => array(
'arguments' => array(
'vss_id' => '',
'view' => NULL,
'options' => array(),
),
'file' => 'views_slideshow_singleframe.theme.inc',
),
'views_slideshow_singleframe_control_previous' => array(
'arguments' => array(
'vss_id' => '',
'view' => NULL,
'options' => array(),
),
'file' => 'views_slideshow_singleframe.theme.inc',
),
'views_slideshow_singleframe_control_pause' => array(
'arguments' => array(
'vss_id' => '',
'view' => NULL,
'options' => array(),
),
'file' => 'views_slideshow_singleframe.theme.inc',
),
'views_slideshow_singleframe_control_next' => array(
'arguments' => array(
'vss_id' => '',
'view' => NULL,
'options' => array(),
),
'file' => 'views_slideshow_singleframe.theme.inc',
),
'views_slideshow_singleframe_pager' => array(
'arguments' => array(
'vss_id' => '',
'view' => NULL,
'options' => array(),
),
'file' => 'views_slideshow_singleframe.theme.inc',
),
'views_slideshow_singleframe_image_count' => array(
'arguments' => array(
'vss_id' => '',
'view' => NULL,
'options' => array(),
),
'file' => 'views_slideshow_singleframe.theme.inc',
),
'views_slideshow_singleframe_no_display_section' => array(
'arguments' => array(
'view' => NULL,
'rows' => NULL,
'vss_id' => NULL,
'mode' => NULL,
'teaser' => TRUE,
),
'file' => 'views_slideshow_singleframe.theme.inc',
),
'views_slideshow_singleframe_no_display_teaser' => array(
'arguments' => array(
'item' => NULL,
'vss_id' => NULL,
'count' => NULL,
'length' => NULL,
),
'file' => 'views_slideshow_singleframe.theme.inc',
),
);
}