You are here

function jcarousel_theme in jCarousel 6

Same name and namespace in other branches
  1. 8.5 jcarousel.module \jcarousel_theme()
  2. 8.3 jcarousel.module \jcarousel_theme()
  3. 8.4 jcarousel.module \jcarousel_theme()
  4. 6.2 jcarousel.module \jcarousel_theme()
  5. 7.3 jcarousel.module \jcarousel_theme()
  6. 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',
      ),
    ),
  );
}