function views_slideshow_jcarousel_theme in Views Slideshow JCarousel 6
Same name and namespace in other branches
- 8 views_slideshow_jcarousel.module \views_slideshow_jcarousel_theme()
- 7.2 views_slideshow_jcarousel.module \views_slideshow_jcarousel_theme()
- 7 views_slideshow_jcarousel.module \views_slideshow_jcarousel_theme()
Implement 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(
'arguments' => array(
'vss_id' => NULL,
'view' => NULL,
'settings' => array(),
'location' => NULL,
'attributes' => array(),
),
'template' => 'theme/views-slideshow-jcarousel-pager',
),
'views_slideshow_jcarousel_pager_field' => array(
'arguments' => array(
'view' => NULL,
'field' => NULL,
'count' => NULL,
),
'template' => 'theme/views-slideshow-jcarousel-pager-field',
'file' => 'theme/views_slideshow_jcarousel.theme.inc',
),
'views_slideshow_jcarousel_pager_item' => array(
'arguments' => array(
'vss_id' => NULL,
'item' => NULL,
'count' => NULL,
'location' => NULL,
),
'template' => 'theme/views-slideshow-jcarousel-pager-item',
),
);
}