You are here

function views_slideshow_slider_theme in Views Slideshow Slider 6.3

Same name and namespace in other branches
  1. 6.2 views_slideshow_slider.module \views_slideshow_slider_theme()
  2. 7.3 views_slideshow_slider.module \views_slideshow_slider_theme()

Implements hook_theme().

File

./views_slideshow_slider.module, line 42
Views Slideshow: slider has options for working with node views.

Code

function views_slideshow_slider_theme($existing, $type, $theme, $path) {
  return array(
    'views_slideshow_slider_widget_render' => array(
      'arguments' => array(
        'vss_id' => NULL,
      ),
      'template' => 'theme/templates/views-slideshow-slider',
      'file' => 'theme/views_slideshow_slider.theme.inc',
    ),
  );
}