function views_slideshow_jcarousel_theme in Views Slideshow JCarousel 7
Same name and namespace in other branches
- 8 views_slideshow_jcarousel.module \views_slideshow_jcarousel_theme()
- 6 views_slideshow_jcarousel.module \views_slideshow_jcarousel_theme()
- 7.2 views_slideshow_jcarousel.module \views_slideshow_jcarousel_theme()
Implements hook_theme().
File
- ./
views_slideshow_jcarousel.module, line 5
Code
function views_slideshow_jcarousel_theme($existing, $type, $theme, $path) {
return array(
'views_slideshow_jcarousel_pager' => array(
'variables' => array(
'vss_id' => NULL,
'view' => NULL,
'settings' => array(),
'location' => NULL,
'attributes' => array(),
),
'template' => 'views-slideshow-jcarousel-pager',
'path' => $path . '/theme',
),
'views_slideshow_jcarousel_pager_field' => array(
'variables' => array(
'view' => NULL,
'field' => NULL,
'count' => NULL,
),
'template' => 'views-slideshow-jcarousel-pager-field',
'file' => 'views_slideshow_jcarousel.theme.inc',
'path' => $path . '/theme',
),
'views_slideshow_jcarousel_pager_item' => array(
'variables' => array(
'vss_id' => NULL,
'item' => NULL,
'count' => NULL,
'location' => NULL,
),
'template' => 'views-slideshow-jcarousel-pager-item',
'path' => $path . '/theme',
),
);
}