You are here

slick_views.views.inc in Slick Views 7.2

Same filename and directory in other branches
  1. 7.3 slick_views.views.inc

Contains core functions for the Views module support.

File

slick_views.views.inc
View source
<?php

/**
 * @file
 * Contains core functions for the Views module support.
 */

/**
 * Implements hook_views_plugins().
 */
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,
      ),
    ),
  );
}

Functions