You are here

function jquery_carousel_carousel_theme_info in jQuery carousel 7

Same name and namespace in other branches
  1. 8 jquery_carousel.module \jquery_carousel_carousel_theme_info()

Implements hook_carousel_theme_info().

File

./jquery_carousel.module, line 398
Provide jquery carousel style plugin for views.

Code

function jquery_carousel_carousel_theme_info() {
  $themes = array();
  $themes['default'] = array(
    'title' => t('Default'),
    'file' => 'jcarousel-themes/default/jquery-carousel-default.css',
  );
  $themes['glass'] = array(
    'title' => t('Glass'),
    'file' => 'jcarousel-themes/glass/jquery-carousel-glass.css',
  );
  return $themes;
}