You are here

function views_slideshow_liquidcarousel_theme in Views Slideshow Liquid Carousel 7.2

Same name and namespace in other branches
  1. 7 views_slideshow_liquidcarousel.module \views_slideshow_liquidcarousel_theme()

Implements hook_theme().

File

./views_slideshow_liquidcarousel.module, line 47
views_slideshow_liquidcarousel.module

Code

function views_slideshow_liquidcarousel_theme($existing, $type, $theme, $path) {
  return array(
    'views_slideshow_liquidcarousel_main_frame' => array(
      'variables' => array(
        'view' => NULL,
        'settings' => array(),
        'rows' => array(),
        'title' => '',
      ),
      'template' => 'theme/views-slideshow-liquidcarousel-main-frame',
      'file' => 'theme/views_slideshow_liquidcarousel.theme.inc',
    ),
  );
}