You are here

function jquery_carousel_carousel_theme_info in jQuery carousel 8

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

Implements hook_carousel_theme_info().

File

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

Code

function jquery_carousel_carousel_theme_info() {
  $themes = [];
  $themes['default'] = [
    'title' => t('Default'),
    'library' => 'jquery_carousel/jquery_carousel.jcarousel_themes_default',
  ];
  $themes['glass'] = [
    'title' => t('Glass'),
    'library' => 'jquery_carousel/jquery_carousel.jcarousel_themes_glass',
  ];
  return $themes;
}