You are here

function slick_views_views_plugins in Slick Views 7.2

Same name and namespace in other branches
  1. 7.3 slick_views.views.inc \slick_views_views_plugins()

Implements hook_views_plugins().

File

./slick_views.views.inc, line 10
Contains core functions for the Views module support.

Code

function slick_views_views_plugins() {
  return array(
    'style' => array(
      'slick' => array(
        'title' => t('Slick carousel'),
        'help' => t('Display the results in a Slick carousel widget.'),
        'handler' => 'SlickViews',
        'theme' => 'slick_views',
        'theme file' => 'slick_views.theme.inc',
        'theme path' => drupal_get_path('module', 'slick_views') . '/templates',
        'uses row plugin' => TRUE,
        'uses options' => TRUE,
        'type' => 'normal',
        'even empty' => FALSE,
      ),
    ),
  );
}