function jcarousel_theme in jCarousel 6
Same name and namespace in other branches
- 8.5 jcarousel.module \jcarousel_theme()
- 8.3 jcarousel.module \jcarousel_theme()
- 8.4 jcarousel.module \jcarousel_theme()
- 6.2 jcarousel.module \jcarousel_theme()
- 7.3 jcarousel.module \jcarousel_theme()
- 7.2 jcarousel.module \jcarousel_theme()
Implementation of hook_theme().
File
- ./
jcarousel.module, line 151 - Provides the jCarousel jQuery plugin.
Code
function jcarousel_theme($existing, $type, $theme, $path) {
return array(
'jcarousel' => array(
'arguments' => array(
'items' => array(),
'options' => array(),
'skin' => 'tango',
'skin_path' => NULL,
'id' => 'jcarousel',
),
),
);
}