You are here

views_showcase.views.inc in Views Showcase 7

Same filename and directory in other branches
  1. 6.2 views_showcase.views.inc
  2. 6 views_showcase.views.inc

Defines the View Style Plugins for Views Showcase module.

File

views_showcase.views.inc
View source
<?php

/**
 * @file
 * Defines the View Style Plugins for Views Showcase module.
 */

/**
 * Implements hook_views_plugins().
 */
function views_showcase_views_plugins() {
  return array(
    'style' => array(
      'views_showcase' => array(
        'title' => t('Views Showcase'),
        'theme' => 'views_showcase_view',
        'help' => t('Display a view like a showcase.'),
        'handler' => 'views_showcase_plugin_style_showcase',
        'path' => drupal_get_path('module', 'views_showcase'),
        'uses options' => TRUE,
        'uses row plugin' => TRUE,
        'uses grouping' => FALSE,
        'type' => 'normal',
      ),
    ),
  );
}

Functions